Added basic NeoVim config

This commit is contained in:
Felipe M 2020-12-16 16:31:40 +01:00
parent 9a3c3c2de3
commit 91b00b403b
1 changed files with 19 additions and 0 deletions

19
.config/nvim/init.vim Normal file
View 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