Update Google prefs loading

This commit is contained in:
Christian Nieves
2022-08-08 11:10:54 -05:00
parent d3abbde5c7
commit e00277beb0
15 changed files with 18 additions and 15 deletions

Submodule vim/.vim/plugged/fzf.vim updated: c311c0a95f...c6b59d8ad7

Submodule vim/.vim/plugged/nvim-lspconfig updated: ba25b747a3...a78831f975

Submodule vim/.vim/plugged/nvim-treesitter updated: 42891dccf8...7e41005423

Submodule vim/.vim/plugged/onehalf updated: 141c775ace...75eb2e97ac

Submodule vim/.vim/plugged/plenary.nvim updated: 986ad71ae9...31807eef4e

Submodule vim/.vim/plugged/purify updated: a6a5c600db...70011ccc32

Submodule vim/.vim/plugged/telescope.nvim updated: b5833a682c...4725867ec6

Submodule vim/.vim/plugged/vim-airline updated: ebb89a0846...66a6e03a34

Submodule vim/.vim/plugged/vim-fugitive updated: 9a13fc87c4...66a921bbe3

Submodule vim/.vim/plugged/vim-go updated: 7ec0a19a78...b524371788

Submodule vim/.vim/plugged/vim-javascript updated: d6e137563c...67a3435bf6

Submodule vim/.vim/plugged/vim-titlecase updated: 630089d75a...69a697c54a

View File

@ -83,7 +83,7 @@ call plug#begin('~/.vim/plugged')
if filereadable(expand("~/.vimrc.local")) if filereadable(expand("~/.vimrc.local"))
source ~/.vimrc.local source ~/.vimrc.local
endif endif
if filereadable(expand("~/.vim/prefs/use_google.vim")) if filereadable(expand("~/use_google"))
source ~/.vim/prefs/google.vim source ~/.vim/prefs/google.vim
endif endif
@ -112,7 +112,7 @@ lua << EOF
EOF EOF
source ~/.vim/prefs/cmp.vim source ~/.vim/prefs/cmp.vim
if filereadable(expand("~/.vim/prefs/use_google.vim")) if filereadable(expand("~/use_google"))
source ~/.vim/prefs/google_comments.vim source ~/.vim/prefs/google_comments.vim
endif endif

View File

@ -20,5 +20,8 @@ export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
source ~/.bash_profile.local
if [[ -f "~/use_google" ]]; then
source ~/.bash_profile.google
fi
source ~/.aliases.sh source ~/.aliases.sh