dotfiles/.vimrc

22 lines
305 B
VimL
Raw Normal View History

2015-08-25 00:05:28 +02:00
" Global settings
syntax on
filetype plugin indent on
set showcmd
set ruler
set mouse=a
set backupdir=~/.config/vim/backup/
set directory=~/.config/vim/backup/
set number
" Colors
highlight LineNr ctermfg=cyan
" Indent
set tabstop=2
set shiftwidth=2
set expandtab
" Search
set incsearch
set ignorecase