aboutsummaryrefslogtreecommitdiff
path: root/vim/config/fedora.vim
blob: ff6cadfce837b993845a3757840e951f6b753186 (plain) (blame)
1
2
3
4
5
6
7
8
" Fedora's default environment adds a few auto commands that I don't like,
" including the 'return to previous position in buffer' one; fortunately
" they're nice enough to group the commands, so I can just clear them
if has('autocmd')
  augroup fedora
    autocmd!
  augroup END
endif