vim-polyglot/ftplugin/nix.vim

26 lines
479 B
VimL
Raw Permalink Normal View History

if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'nix') != -1
finish
endif
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
setlocal
2019-06-08 06:44:15 -04:00
\ comments=:#
\ commentstring=#\ %s
\ iskeyword+=-
if get(g:, 'nix_recommended_style', 1)
setlocal
\ shiftwidth=2
\ softtabstop=2
2019-06-08 06:44:15 -04:00
\ expandtab
endif