Initial vimrc commit

This commit is contained in:
Markus Pesch 2017-05-29 08:20:35 +02:00
parent efc5c46722
commit 7fd7ce1d8c
No known key found for this signature in database
GPG Key ID: 0C18FADC12547561

21
vimrc Normal file
View File

@ -0,0 +1,21 @@
" Style
" colorscheme desert
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