vim.vam: fix filetype detection
According to https://github.com/MarcWeber/vim-addon-manager/blob/master/doc/vim-addon-manager-additional-documentation.txt#L1310 `filetype on` must be called after all VAM plugins are initialized. Otherwise vim set `conf` filetype for some files containing hash tags.
This commit is contained in:
parent
6b2ea7ec6e
commit
b7d65f8af0
@ -262,13 +262,14 @@ let
|
|||||||
in writeText "vimrc" ''
|
in writeText "vimrc" ''
|
||||||
" minimal setup, generated by NIX
|
" minimal setup, generated by NIX
|
||||||
set nocompatible
|
set nocompatible
|
||||||
filetype indent plugin on | syn on
|
|
||||||
|
|
||||||
${vamImpl}
|
${vamImpl}
|
||||||
${pathogenImpl}
|
${pathogenImpl}
|
||||||
${vundleImpl}
|
${vundleImpl}
|
||||||
${neobundleImpl}
|
${neobundleImpl}
|
||||||
|
|
||||||
|
filetype indent plugin on | syn on
|
||||||
|
|
||||||
${customRC}
|
${customRC}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user