diff options
| author | Teddy Wing | 2021-02-21 18:40:14 +0100 | 
|---|---|---|
| committer | Teddy Wing | 2021-03-20 15:03:44 +0100 | 
| commit | 240527158db0fb8da5ed434d4137aed8a4fbbfed (patch) | |
| tree | 28b67653c232b645e3e5d80682dd67a411408c4c | |
| parent | 2f708ba5eccdb91c67575e940fcf08be513990bf (diff) | |
| download | dotvim-240527158db0fb8da5ed434d4137aed8a4fbbfed.tar.bz2 | |
ftplugin/lisp.vim: Activate the built-in Lisp ftplugin
I wanted the built-in `comments` setting to automatically insert the
comment leader when wrapping.
| -rw-r--r-- | ftplugin/lisp.vim | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/ftplugin/lisp.vim b/ftplugin/lisp.vim index c2f44af..ef44bbf 100644 --- a/ftplugin/lisp.vim +++ b/ftplugin/lisp.vim @@ -1,5 +1,10 @@  " Common Lisp vim settings +if exists('b:did_ftplugin') +	unlet b:did_ftplugin +endif + +  " Indentation  setlocal expandtab  setlocal tabstop=2 | 
