diff options
Diffstat (limited to '.config/nvim/after/ftplugin')
| -rw-r--r-- | .config/nvim/after/ftplugin/sh.vim | 11 | ||||
| -rw-r--r-- | .config/nvim/after/ftplugin/tex.vim | 3 | 
2 files changed, 14 insertions, 0 deletions
diff --git a/.config/nvim/after/ftplugin/sh.vim b/.config/nvim/after/ftplugin/sh.vim new file mode 100644 index 0000000..d735bee --- /dev/null +++ b/.config/nvim/after/ftplugin/sh.vim  | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | setg formatprg=cmdfmt\ 80 | ||
| 2 | |||
| 3 | function! UpdateFormatprg() | ||
| 4 | let &g:formatprg = substitute( &g:formatprg , '\d\+$', &textwidth , "" ) | ||
| 5 | endfunction | ||
| 6 | |||
| 7 | augroup UpdateFormatprgGroup | ||
| 8 | autocmd! | ||
| 9 | autocmd VimEnter,BufEnter * call UpdateFormatprg() | ||
| 10 | autocmd OptionSet textwidth call UpdateFormatprg() | ||
| 11 | augroup END | ||
diff --git a/.config/nvim/after/ftplugin/tex.vim b/.config/nvim/after/ftplugin/tex.vim index 27b002a..8ca7f23 100644 --- a/.config/nvim/after/ftplugin/tex.vim +++ b/.config/nvim/after/ftplugin/tex.vim  | |||
| @@ -17,3 +17,6 @@ call sandwich#util#addlocal([{ | |||
| 17 | \ 'buns': ['\enquote{', '}'], | 17 | \ 'buns': ['\enquote{', '}'], | 
| 18 | \ 'input': ['"'], | 18 | \ 'input': ['"'], | 
| 19 | \ }]) | 19 | \ }]) | 
| 20 | |||
| 21 | |||
| 22 | set signcolumn=yes | ||
