dotfiles/.nvimrc
2015-09-25 17:42:06 +02:00

22 lines
311 B
Plaintext

" Global settings
syntax on
filetype plugin indent on
set showcmd
set ruler
set mouse=a
set backupdir=~/.config/neovim/backup/
set directory=~/.config/neovim/backup/
set number
" Colors
highlight LineNr ctermfg=cyan
" Indent
set tabstop=2
set shiftwidth=2
set expandtab
" Search
set incsearch
set ignorecase