From 8e874bc1ab0b8fcf9595d28b392f6c365719c3e7 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Wed, 29 Oct 2014 16:57:52 +0100 Subject: [PATCH 1/2] add airline config --- vimrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vimrc b/vimrc index 71f19d2..2bb48d4 100644 --- a/vimrc +++ b/vimrc @@ -229,6 +229,10 @@ endif " Plugin Configuration " +"" syntastic +let g:syntastic_javascript_checkers = ['jscs','jshint'] +let g:syntastic_check_on_open = 1 + "" ariline let g:airline_theme = 'solarized' let g:airline_enable_syntastic = 1 From 5567524f0d81f19a38fca60707c43f18fae7b8f1 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Wed, 29 Oct 2014 17:00:24 +0100 Subject: [PATCH 2/2] add zshenv --- zshenv | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 zshenv diff --git a/zshenv b/zshenv new file mode 100644 index 0000000..3516cd9 --- /dev/null +++ b/zshenv @@ -0,0 +1,17 @@ +################## +# Source Things +################# + +# solarized dircolors +[ -s ~/.dircolors ] && . ~/.dircolors + +# extend path +export PATH=$HOME/local/bin:$PATH + +# nvm +export NVM_DIR="$HOME/.nvm" +[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm + +# todo.sh +alias t=todo.sh +