summaryrefslogtreecommitdiffstats
path: root/.config/nvim/after/plugin/autocmds.vim
blob: 05b7ce946c3e1a1c265d42d5fa09fff57d655984 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
" 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