summaryrefslogtreecommitdiffstats
path: root/.config/nvim/after/plugin/autocmds.vim
blob: c953a242914a3dbd3d6102dc817459c6a6079b15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
" I don't know how to port this yet
autocmd BufRead,BufWrite * if ! &bin | silent! %s/\s\+$//ge | endif

autocmd BufNewFile,BufRead /tmp/neomutt* set noautoindent filetype=mail wm=0 tw=80

augroup bukugroup
  au! BufRead,BufNewFile,BufEnter buku-edit-* set filetype=buku
augroup END

" Restore last position
autocmd BufReadPost *
  \ if line("'\"") >= 1 && line("'\"") <= line("$") && &ft !~# 'commit'
  \ |   exe "normal! g`\""
  \ | endif

" Currently for one c snippet, but can embed into lualine
autocmd VimEnter * call vista#RunForNearestMethodOrFunction()