diff options
author | Camil Staps | 2018-07-01 20:09:01 +0200 |
---|---|---|
committer | Camil Staps | 2018-07-01 20:09:01 +0200 |
commit | 75e686cb7a55c59b87371640aeec0158844c4ae4 (patch) | |
tree | 5fbb743237c30d36f28b4fc0c115d621d1aaff9b /contrib/vim-fuspel/ftplugin/fuspel.vim | |
parent | Fix grammar (diff) |
Add vim-fuspel
Diffstat (limited to 'contrib/vim-fuspel/ftplugin/fuspel.vim')
-rw-r--r-- | contrib/vim-fuspel/ftplugin/fuspel.vim | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/contrib/vim-fuspel/ftplugin/fuspel.vim b/contrib/vim-fuspel/ftplugin/fuspel.vim new file mode 100644 index 0000000..276873a --- /dev/null +++ b/contrib/vim-fuspel/ftplugin/fuspel.vim @@ -0,0 +1,26 @@ +" Vim plugin for fuspel development +" Language: Fuspel functional programing language +" Maintainer: Camil Staps <info@camilstaps.nl> +" License: This file is placed in the public domain. + +if exists("b:did_ftplugin") + finish +endif +let b:did_ftplugin = 1 + +let s:cpo_save = &cpo +set cpo&vim + +let b:undo_ftplugin = "setlocal com< cms< fo< sua<" + +setlocal comments=:// +setlocal commentstring=//\ %s + +setlocal formatoptions-=t formatoptions+=ro + +setlocal suffixesadd=.fusp + +let &cpo = s:cpo_save +unlet s:cpo_save + +" vim: expandtab shiftwidth=2 tabstop=2 |