Added basic NeoVim config
This commit is contained in:
parent
9a3c3c2de3
commit
91b00b403b
1 changed files with 19 additions and 0 deletions
19
.config/nvim/init.vim
Normal file
19
.config/nvim/init.vim
Normal file
|
@ -0,0 +1,19 @@
|
|||
" vim-plug
|
||||
call plug#begin(stdpath('data') . '/plugged')
|
||||
|
||||
Plug 'ctrlpvim/ctrlp.vim'
|
||||
|
||||
call plug#end()
|
||||
|
||||
" General configuration
|
||||
set title " Shows file name in title
|
||||
set number " Shows line numbers
|
||||
set nowrap " Do not wrap lines
|
||||
|
||||
set hidden " Allow buffer switch without saving
|
||||
set ignorecase " Allows case insensitive searches
|
||||
"set smartcase " Case sensitive searches if uppercase is used
|
||||
|
||||
set spelllang=en
|
||||
|
||||
colorscheme zellner
|
Loading…
Add table
Add a link
Reference in a new issue