vim/vimrc

23 lines
300 B
VimL
Raw Normal View History

2017-05-29 06:20:35 +00:00
" Style
2017-07-16 13:06:25 +00:00
colorscheme murphy
2017-05-29 06:20:35 +00:00
syntax on
set wildmenu
set autoindent
" Tab
set tabstop=2
set shiftwidth=2
set expandtab
set smarttab
" Show row numbers
set rnu
" Strip trailing whitespaces
autocmd BufWritePre * %s/\s\+$//e
" Display extra whitespace
set list listchars=tab:»·,trail
2017-07-16 12:22:07 +00:00
set mouse=v