dotfiles/.vimrc
2018-02-05 00:16:42 -06:00

32 lines
305 B
VimL

"
" ~/.vimrc
" author: adam gausmann
"
" appearance
" =========
set number
set showcmd
set incsearch
set hlsearch
" rebinds
" ==========
noremap ; l
noremap l k
noremap k j
noremap j h
inoremap jk <esc>
" indentation
" ===========
set tabstop=4
set softtabstop=4
set expandtab
filetype indent on