26 lines
479 B
VimL
Raw Normal View History

if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'nix') != -1
finish
endif
2017-11-19 21:34:38 +01: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 10:47:00 +01:00
endif
2017-11-19 21:34:38 +01:00
let b:did_ftplugin = 1
2015-12-17 10:47:00 +01:00
setlocal
2019-06-08 12:44:15 +02:00
\ comments=:#
\ commentstring=#\ %s
\ iskeyword+=-
if get(g:, 'nix_recommended_style', 1)
setlocal
\ shiftwidth=2
\ softtabstop=2
2019-06-08 12:44:15 +02:00
\ expandtab
endif