Rename vimrc files to get syntax highlighting
This commit is contained in:
parent
cbb5bf3f00
commit
62e432480f
20
vimrc
20
vimrc
@ -59,53 +59,53 @@ let &t_EI = "\<Esc>[0 q"
|
|||||||
|
|
||||||
" Plugins
|
" Plugins
|
||||||
call plug#begin('~/.vim/plugged')
|
call plug#begin('~/.vim/plugged')
|
||||||
if filereadable(expand("~/.config/nvim/plugins"))
|
if filereadable(expand("~/.config/nvim/plugins.vimrc"))
|
||||||
source ~/.config/nvim/plugins
|
source ~/.config/nvim/plugins
|
||||||
endif
|
endif
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
" Keybindings
|
" Keybindings
|
||||||
if filereadable(expand("~/.config/nvim/keybindings"))
|
if filereadable(expand("~/.config/nvim/keybindings.vimrc"))
|
||||||
source ~/.config/nvim/keybindings
|
source ~/.config/nvim/keybindings
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" CoC
|
" CoC
|
||||||
if filereadable(expand("~/.config/nvim/coc"))
|
if filereadable(expand("~/.config/nvim/coc.vimrc"))
|
||||||
source ~/.config/nvim/coc
|
source ~/.config/nvim/coc
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" Lightline setup
|
" Lightline setup
|
||||||
if filereadable(expand("~/.config/nvim/lightline"))
|
if filereadable(expand("~/.config/nvim/lightline.vimrc"))
|
||||||
source ~/.config/nvim/lightline
|
source ~/.config/nvim/lightline
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" Tmuxline setup
|
" Tmuxline setup
|
||||||
if filereadable(expand("~/.config/nvim/tmuxline"))
|
if filereadable(expand("~/.config/nvim/tmuxline.vimrc"))
|
||||||
source ~/.config/nvim/tmuxline
|
source ~/.config/nvim/tmuxline
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" Git setup
|
" Git setup
|
||||||
if filereadable(expand("~/.config/nvim/git"))
|
if filereadable(expand("~/.config/nvim/git.vimrc"))
|
||||||
source ~/.config/nvim/git
|
source ~/.config/nvim/git
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" NERDTree setup
|
" NERDTree setup
|
||||||
if filereadable(expand("~/.config/nvim/nerdtree"))
|
if filereadable(expand("~/.config/nvim/nerdtree.vimrc"))
|
||||||
source ~/.config/nvim/nerdtree
|
source ~/.config/nvim/nerdtree
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" Ack setup
|
" Ack setup
|
||||||
if filereadable(expand("~/.config/nvim/ack"))
|
if filereadable(expand("~/.config/nvim/ack.vimrc"))
|
||||||
source ~/.config/nvim/ack
|
source ~/.config/nvim/ack
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" Test setup
|
" Test setup
|
||||||
if filereadable(expand("~/.config/nvim/test"))
|
if filereadable(expand("~/.config/nvim/test.vimrc"))
|
||||||
source ~/.config/nvim/test
|
source ~/.config/nvim/test
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" Color setup
|
" Color setup
|
||||||
if filereadable(expand("~/.config/nvim/colors"))
|
if filereadable(expand("~/.config/nvim/colors.vimrc"))
|
||||||
source ~/.config/nvim/colors
|
source ~/.config/nvim/colors
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user