vim/vimrc

32 lines
519 B
VimL
Raw Normal View History

2017-05-29 06:20:35 +00:00
" Style
2017-07-19 17:02:19 +00:00
colorscheme elflord
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-17 07:15:06 +00:00
" Copy paste about clipboard
2017-07-16 12:22:07 +00:00
set mouse=v
2017-07-17 07:15:06 +00:00
" Sepcial configurations
autocmd Filetype make setlocal noexpandtab
2017-07-19 06:14:21 +00:00
autocmd BufNewFile,BufRead rsnapshot.conf setlocal noexpandtab
2017-07-17 07:17:15 +00:00
" Autocompletion (bash)
set wildmode=longest,list,full