diff --git a/vimrc b/vimrc index 2540d98..d1d247a 100644 --- a/vimrc +++ b/vimrc @@ -60,53 +60,53 @@ let &t_EI = "\[0 q" " Plugins call plug#begin('~/.vim/plugged') if filereadable(expand("~/.config/nvim/plugins.vimrc")) - source ~/.config/nvim/plugins + source ~/.config/nvim/plugins.vimrc endif call plug#end() " Keybindings if filereadable(expand("~/.config/nvim/keybindings.vimrc")) - source ~/.config/nvim/keybindings + source ~/.config/nvim/keybindings.vimrc endif " CoC if filereadable(expand("~/.config/nvim/coc.vimrc")) - source ~/.config/nvim/coc + source ~/.config/nvim/coc.vimrc endif " Lightline setup if filereadable(expand("~/.config/nvim/lightline.vimrc")) - source ~/.config/nvim/lightline + source ~/.config/nvim/lightline.vimrc endif " Tmuxline setup if filereadable(expand("~/.config/nvim/tmuxline.vimrc")) - source ~/.config/nvim/tmuxline + source ~/.config/nvim/tmuxline.vimrc endif " Git setup if filereadable(expand("~/.config/nvim/git.vimrc")) - source ~/.config/nvim/git + source ~/.config/nvim/git.vimrc endif " NERDTree setup if filereadable(expand("~/.config/nvim/nerdtree.vimrc")) - source ~/.config/nvim/nerdtree + source ~/.config/nvim/nerdtree.vimrc endif " Ack setup if filereadable(expand("~/.config/nvim/ack.vimrc")) - source ~/.config/nvim/ack + source ~/.config/nvim/ack.vimrc endif " Test setup if filereadable(expand("~/.config/nvim/test.vimrc")) - source ~/.config/nvim/test + source ~/.config/nvim/test.vimrc endif " Color setup if filereadable(expand("~/.config/nvim/colors.vimrc")) - source ~/.config/nvim/colors + source ~/.config/nvim/colors.vimrc endif " Set secure AFTER any other rc importing