Add nim support

This commit is contained in:
Adam Stankiewicz
2016-01-22 09:08:30 +01:00
parent 61390f5885
commit 2bde381723
8 changed files with 630 additions and 0 deletions

27
ftplugin/nim.vim Normal file
View File

@@ -0,0 +1,27 @@
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'nim') == -1
if exists("b:nim_loaded")
finish
endif
let b:nim_loaded = 1
let s:cpo_save = &cpo
set cpo&vim
call nim#init()
setlocal formatoptions-=t formatoptions+=croql
setlocal comments=:##,:#
setlocal commentstring=#\ %s
setlocal omnifunc=NimComplete
setlocal suffixesadd=.nim
setlocal expandtab "Make sure that only spaces are used
compiler nim
let &cpo = s:cpo_save
unlet s:cpo_save
endif