dotfiles

dotfiles.git
git clone git://git.lenczewski.org/dotfiles.git
Log | Files | Refs

vimrc (414B)


      1 packadd! editorconfig
      2 
      3 syntax off
      4 filetype plugin on
      5 
      6 if has('autocmd')
      7 	filetype indent on
      8 else
      9 	set autoindent
     10 endif
     11 
     12 set lazyredraw
     13 
     14 set cc=80,120,160
     15 set number
     16 
     17 :nnoremap <C-V> <C-W>v
     18 :nnoremap <C-S> <C-W>s
     19 :nnoremap <C-H> <C-W>h
     20 :nnoremap <C-J> <C-W>j
     21 :nnoremap <C-K> <C-W>k
     22 :nnoremap <C-L> <C-W>l
     23 
     24 :tnoremap <C-N> <C-W>n
     25 :tnoremap <C-P> <C-W>p
     26 :tnoremap <C-H> <C-W>h
     27 :tnoremap <C-L> <C-W>l
     28 
     29 set belloff=all