22 lines
305 B
VimL
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
|