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