diff options
author | zachir <zachir@librem.one> | 2025-06-30 20:15:08 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2025-06-30 20:15:08 -0500 |
commit | b413c6caae608500846872c17392e04d39c1bcb9 (patch) | |
tree | 3be0bb6ebf9f5612c7b1eef0efb5cb99234ea588 /vim/vimrc | |
parent | acbbf1cf0af13fe4474927425c7d30fedd0e7236 (diff) | |
parent | 9ed20f04a91fe019f3a918289df444979bab77b4 (diff) |
Merge branch 'master' into cla
Diffstat (limited to 'vim/vimrc')
-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 |