22 lines
311 B
Plaintext
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
|