diff --git a/fish/config.fish b/fish/config.fish index 3951096..a52d337 100644 --- a/fish/config.fish +++ b/fish/config.fish @@ -16,3 +16,5 @@ set -x PATH /usr/local/bin $PATH # Homebrew set -x PATH $HOME/.rvm/bin $PATH # RVM set -x PATH /Applications/Postgres.app/Contents/MacOS/bin $PATH # Postgres set -x PATH $HOME/Library/Haskell/bin $PATH # Haskell + +set -x IGVERBOSE 3 diff --git a/oh-my-zsh b/oh-my-zsh index 1103421..caa1554 160000 --- a/oh-my-zsh +++ b/oh-my-zsh @@ -1 +1 @@ -Subproject commit 11034217a7ea3cffe6e0fe631837c518b8c7e1a5 +Subproject commit caa15548c107b9c31f61a67547ffab0b0cfe4934 diff --git a/vim/bundle/vundle b/vim/bundle/vundle index 03ed2bd..dd8356a 160000 --- a/vim/bundle/vundle +++ b/vim/bundle/vundle @@ -1 +1 @@ -Subproject commit 03ed2bd39e37c5ff035c05197af81558eb5d8a89 +Subproject commit dd8356aea7499fed92f7c37227b1625a2b3dc190 diff --git a/vimrc b/vimrc index f570316..106ab89 100644 --- a/vimrc +++ b/vimrc @@ -157,6 +157,8 @@ else let g:loaded_syntastic_plugin=1 endif +nnoremap s :SyntasticToggleMode + " Supertab " let g:SuperTabDefaultCompletionType="context" @@ -164,10 +166,10 @@ endif nnoremap 4 :! p4 edit % " open vsplit and switch to it -nnoremap w vl +nnoremap v vl " trim whitespace -nnoremap W :%s/\s\+$//e +nnoremap w :%s/\s\+$//e " open Ack nnoremap a :Ack @@ -180,14 +182,6 @@ nnoremap ! :Clam " CtrlP nnoremap b :CtrlPBuffer + " Set the max files let g:ctrlp_max_files = 10000 -" Optimize file searching -"if has("unix") - "let g:ctrlp_user_command = { - "\ 'types': { - "\ 1: ['.git/', 'cd %s && git ls-files'] - "\ }, - "\ 'fallback': 'find %s -type f | head -' . g:ctrlp_max_files - "\ } -"endif