
minimal init.vim
call plug#begin('~/.vim/plugged')
Plug 'tyru/caw.vim', {'on': ['<Plug>(caw:hatpos:toggle)']}
imap <c-_> <esc><Plug>(caw:hatpos:toggle)
nmap <c-_> <Plug>(caw:hatpos:toggle)
vmap <c-_> <Plug>(caw:hatpos:toggle)
call plug#end()
autocmd BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exec "normal! g'\" \| zz" | endif