19 lines
426 B
VimL
19 lines
426 B
VimL
" 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
|