From dde64abad29bca1b843508d5855d4b50eb0d012f Mon Sep 17 00:00:00 2001 From: Mike Cugini Date: Wed, 5 Jul 2017 22:18:27 -0400 Subject: [PATCH] fix up local vim settings sourcing and add android studio to path --- vimrc | 4 +++- zshrc | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/vimrc b/vimrc index 2eed5b6..f225652 100644 --- a/vimrc +++ b/vimrc @@ -55,7 +55,9 @@ let g:go_highlight_interfaces = 1 let g:go_highlight_operators = 1 let g:go_highlight_build_constraints = 1 -source ~/.vim/work_customizations.vim +if filereadable(expand("~/.vim/local.vim")) + source ~/.vim/local.vim +endif "indent and tab set nowrap diff --git a/zshrc b/zshrc index 6a2854e..0288271 100644 --- a/zshrc +++ b/zshrc @@ -47,3 +47,4 @@ export GOPATH=$HOME/Projects/go export PATH=$HOME/bin:$GOPATH/bin:$PATH export PATH=/home/mike/.gem/ruby/2.3.0/bin:$PATH +export PATH=/opt/android-studio/bin:/home/mike/.cargo/bin:$PATH