dotfiles/.vimrc
2015-08-24 22:05:28 +00:00

22 lines
305 B
VimL

" 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