mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 23:06:38 -05:00
Fixed filetype assignments
This commit is contained in:
parent
f8d1a8a4cd
commit
e2b5f1327f
1 changed files with 7 additions and 7 deletions
|
@ -29,13 +29,13 @@ endif
|
||||||
|
|
||||||
"FILETPE AND SYNTAX: {{{
|
"FILETPE AND SYNTAX: {{{
|
||||||
"set given filenames to various filetypes
|
"set given filenames to various filetypes
|
||||||
au BufNewFile,BufRead pacman.conf,yaourtrc setf sh
|
autocmd BufNewFile,BufRead *.aspx,*.asmx,*.ascx,*.master setlocal ft=aspnet
|
||||||
au BufNewFile,BufRead cjdroute.conf,cjdmaid.conf setf json
|
autocmd BufNewFile,BufRead *.gradle setlocal ft=groovy
|
||||||
au BufNewFile,BufRead *muttrc setf muttrc
|
autocmd BufNewFile,BufRead *muttrc setlocal ft=muttrc
|
||||||
au BufNewFile,BufRead *vimpagerrc setf vim
|
autocmd BufNewFile,BufRead *vimpagerrc setlocal ft=vim
|
||||||
au BufNewFile,BufRead *ircd.conf setf json
|
autocmd BufNewFile,BufRead *ircd.conf setlocal ft=json
|
||||||
au BufNewFile,BufRead *.aspx,*.asmx,*.ascx,*.master setf aspnet
|
autocmd BufNewFile,BufRead pacman.conf,yaourtrc setlocal ft=sh
|
||||||
au BufNewFile,BufRead *.gradle setf groovy
|
autocmd BufNewFile,BufRead cjdroute.conf,cjdmaid.conf setlocal ft=json
|
||||||
|
|
||||||
"filename specific settings
|
"filename specific settings
|
||||||
autocmd BufEnter,BufRead PKGBUILD setlocal iskeyword-=.
|
autocmd BufEnter,BufRead PKGBUILD setlocal iskeyword-=.
|
||||||
|
|
Loading…
Reference in a new issue