From e28bb6afe6f452333d7e6f140f25fb3c89599b3b Mon Sep 17 00:00:00 2001 From: Daniel Lynn Date: Mon, 12 Jul 2021 15:55:25 -0500 Subject: [PATCH] Fix source lines --- vimrc | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) 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