mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-12 13:33:49 -05:00
28 lines
473 B
VimL
28 lines
473 B
VimL
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
|