summaryrefslogtreecommitdiffstats
path: root/.config/nvim/langs.vim
blob: 26b96d75f483efce3fe19440ed2eb4df644b9666 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
let g:asmsyntax = 'asm'
let perl_include_pod = 1
autocmd BufNewFile,BufRead *.h
			\ set filetype=c
autocmd BufNewFile,BufRead *.c
			\ set filetype=c
autocmd BufNewFile,BufRead *.cxx
			\ set filetype=cpp
autocmd BufNewFile,BufRead *.hxx
			\ set filetype=cpp
autocmd FileType fish
			\ compiler fish
autocmd FileType perl
			\  setlocal com-=:# kp=perldoc\ -f
			\| compiler perl
let g:perl_compiler_force_warnings = 1