Files
dotfiles/vim/vimrc
2016-08-31 00:13:19 +02:00

26 lines
431 B
VimL

"vimrc - VIM Configuration file"
"Autointend"
:set cindent
"Tabstop, Shiftwith and replace tabs with spaces"
:set tabstop=4
:set shiftwidth=4
:set expandtab
"Stuff needed by urxvt"
:set nocompatible
:set mouse=a
:set backspace=2
"Syntaxhighlighting, colorscheme, linenumbers"
:syntax on
:colorscheme calmar256-dark
:set number
:set list
:set nowrap
:set hlsearch
"Automaticly reread a file, if file has changed"
set autoread