diff options
author | Teddy Wing | 2021-01-26 21:14:02 +0100 |
---|---|---|
committer | Teddy Wing | 2021-01-26 21:21:56 +0100 |
commit | d4b9675f6a097d6b6c54b4fbce6bc9b5d94610eb (patch) | |
tree | fa847ce01ccc28d6a8b6d24295316ce50731f364 | |
parent | ab74eca5d0dce35a48798505a27a8e6d0909ef63 (diff) | |
download | dotvim-d4b9675f6a097d6b6c54b4fbce6bc9b5d94610eb.tar.bz2 |
Add ftplugin/lisp.vim
Add Common Lisp indentation settings.
-rw-r--r-- | ftplugin/lisp.vim | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ftplugin/lisp.vim b/ftplugin/lisp.vim new file mode 100644 index 0000000..a5fd6e3 --- /dev/null +++ b/ftplugin/lisp.vim @@ -0,0 +1,7 @@ +" Common Lisp vim settings + +" Indentation +setlocal expandtab +setlocal tabstop=2 +setlocal softtabstop=2 +setlocal shiftwidth=2 |