vim/vimrc

33 lines
542 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
2018-10-20 14:57:14 +00:00
"set textwidth=72
2017-05-29 06:20:35 +00:00
" Show row numbers
2018-09-12 21:23:56 +00:00
set nu
2017-05-29 06:20:35 +00:00
" Strip trailing whitespaces
autocmd BufWritePre * %s/\s\+$//e
" Display extra whitespace
2018-09-13 13:08:57 +00:00
set list listchars=eol:$,tab:»·,trail
2017-05-29 06:20:35 +00:00
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