diff options
author | Zach Smith <zsmith@newhopechurch.tv> | 2025-06-30 09:37:47 -0500 |
---|---|---|
committer | Zach Smith <zsmith@newhopechurch.tv> | 2025-06-30 09:37:47 -0500 |
commit | 5fabb86ef6b456bda48b3671858cb4c8479c824a (patch) | |
tree | e9ed1dd34ced9aafbbd2a89c46a249159a8db5a3 | |
parent | 7a786c70650e6bd2b40301737cc8956842f61fc7 (diff) |
Fix vim options to not take nvim into account
-rw-r--r-- | vim/vimrc | 11 |
1 files changed, 3 insertions, 8 deletions
@@ -13,10 +13,8 @@ set directory=$XDG_STATE_HOME/vim/swap | call mkdir(&directory, 'p') set undodir=$XDG_STATE_HOME/vim/undo | call mkdir(&undodir, 'p') set viewdir=$XDG_STATE_HOME/vim/view | call mkdir(&viewdir, 'p') -if !has('nvim') | set viminfofile=$XDG_STATE_HOME/vim/viminfo | endif - " vimplugs {{{ -call plug#begin('~/.config/nvim/plugged') +call plug#begin('~/.config/vim/plugged') " colorschemes {{{ Plug 'tomasiser/vim-code-dark' " codedark color scheme Plug 'flazz/vim-colorschemes' " meta-color scheme package @@ -52,9 +50,9 @@ Plug 'ryanoasis/vim-devicons' " dev icons for nerdtree call plug#end() " }}} -" nvim options {{{ +" vim options {{{ -"" nvimrc: +"" vimrc: "" General set showmatch " Highlight matching brace @@ -80,9 +78,6 @@ set undolevels=1000 " Number of undo levels set backspace=indent,eol,start " Backspace behaviour filetype plugin indent on -"" GUI Config -set guifont=mononoki\ Nerd\ Font\ Mono:h12 - "hi Normal guibg=NONE ctermbg=NONE "hi NonText guibg=NONE ctermbg=NONE "set background=dark |