vim-polyglot/ftplugin/nix.vim

18 lines
346 B
VimL
Raw Normal View History

2015-12-17 04:47:00 -05:00
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'nix') == -1
2017-11-19 15:34:38 -05:00
" Vim filetype plugin
" Language: Nix
" Maintainer: Daiderd Jordan <daiderd@gmail.com>
" URL: https://github.com/LnL7/vim-nix
if (exists("b:did_ftplugin"))
finish
2015-12-17 04:47:00 -05:00
endif
2017-11-19 15:34:38 -05:00
let b:did_ftplugin = 1
2015-12-17 04:47:00 -05:00
2017-11-19 15:34:38 -05:00
setlocal comments=:#
setlocal commentstring=#\ %s
2015-12-17 04:47:00 -05:00
endif