diff options
author | ZachIR <zachir@librem.one> | 2025-04-25 19:30:26 -0500 |
---|---|---|
committer | ZachIR <zachir@librem.one> | 2025-04-25 19:30:26 -0500 |
commit | e73c54bdf974ee0944642d6380fb5b12179c8897 (patch) | |
tree | b08507211942406a48d8e63084674c86e6b1c1c3 | |
parent | f8a24412d6e388b2c24b4d51166e990cd9fd3c67 (diff) |
Move init.vim to vimrc
-rw-r--r-- | vim/vimrc | 8 |
1 files changed, 3 insertions, 5 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 |