Reorganize some files, add color for ls

This commit is contained in:
2021-06-15 10:13:41 -05:00
parent 547d795d6b
commit 0e8b985c38
8 changed files with 15 additions and 13 deletions

View File

@@ -68,19 +68,19 @@ endfunction
" Plugins
call plug#begin('~/.vim/plugged')
if filereadable(expand("~/.vimrc.plugins"))
source ~/.vimrc.plugins
if filereadable(expand("~/.config/nvim/plugins"))
source ~/.config/nvim/plugins
endif
call plug#end()
" Lightline setup
if filereadable(expand("~/.vimrc.lightline"))
source ~/.vimrc.lightline
if filereadable(expand("~/.config/nvim/lightline"))
source ~/.config/nvim/lightline
endif
" Color setup
if filereadable(expand("~/.vimrc.colors"))
source ~/.vimrc.colors
if filereadable(expand("~/.config/nvim/colors"))
source ~/.config/nvim/colors
endif
" Set secure AFTER any other rc importing