dotfiles/.vimrc

34 lines
322 B
VimL
Raw Normal View History

2018-02-05 00:16:42 -06:00
"
" ~/.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
2018-02-05 17:09:48 -06:00
set shiftwidth=4