summaryrefslogtreecommitdiffstats
path: root/.config/nvim/langs.vim
diff options
context:
space:
mode:
authorJoe <rrbo@proton.me>2023-09-05 12:40:26 +0200
committerJoe <rrbo@proton.me>2023-09-05 12:40:26 +0200
commit58f47081f212cc491f2bcc8907cb8b1b65ab7853 (patch)
tree7e211e1557c39d7637f9a31112c9232d6edd6994 /.config/nvim/langs.vim
parentup (diff)
downloaddotfiles-bsd-58f47081f212cc491f2bcc8907cb8b1b65ab7853.tar.gz
dotfiles-bsd-58f47081f212cc491f2bcc8907cb8b1b65ab7853.tar.bz2
dotfiles-bsd-58f47081f212cc491f2bcc8907cb8b1b65ab7853.tar.xz
dotfiles-bsd-58f47081f212cc491f2bcc8907cb8b1b65ab7853.tar.zst
dotfiles-bsd-58f47081f212cc491f2bcc8907cb8b1b65ab7853.zip
up
Diffstat (limited to '')
-rw-r--r--.config/nvim/langs.vim23
1 files changed, 0 insertions, 23 deletions
diff --git a/.config/nvim/langs.vim b/.config/nvim/langs.vim
deleted file mode 100644
index fe5aa25..0000000
--- a/.config/nvim/langs.vim
+++ /dev/null
@@ -1,23 +0,0 @@
-let g:asmsyntax = 'asm'
-let perl_include_pod = 1
-autocmd BufNewFile,BufRead *.c
- \ set filetype=c
-autocmd BufNewFile,BufRead *.h
- \ set filetype=c
-autocmd BufNewFile,BufRead *.cxx
- \ set filetype=cpp
-autocmd BufNewFile,BufRead *.hxx
- \ set filetype=cpp
-autocmd BufNewFile,BufRead *.ms,*.1,*.2,*.3,*.4,*.5,*.6,*.7,*.8,*.9
- \ set filetype=groff
-autocmd FileType fish
- \ compiler fish
-autocmd FileType perl
- \ setlocal com-=:# kp=perldoc\ -f
- \| compiler perl
-autocmd BufNewFile,BufRead *.conf
- \ set filetype=conf
-autocmd BufWritePost *.ms
- \ let pdf=fnamemodify(bufname('%'), ':r') . ".pdf"
- \| silent! execute "!nroff % -ms -Tpdf -Kutf8 > " . pdf
-let g:perl_compiler_force_warnings = 1