diff --git a/.vimrc b/.vimrc index 4639e106e..97363d604 100644 --- a/.vimrc +++ b/.vimrc @@ -166,7 +166,7 @@ endif " let g:SuperTabDefaultCompletionType = 'context' map :ScalaSearch -set wildignore=*.o,*.obj,*.bak,*.swp,*.class,*.pyc,*.java,*.md,*.min,*.txt,*.xml,*.log,*resources/golden*,*.properties,*.sql,*.q,*/node_modules/*,*/target/* +set wildignore=*.o,*.obj,*.bak,*.swp,*.class,*.pyc,*.md,*.min,*.txt,*.xml,*.jar,*.xml.gz,*.log,*resources/golden*,*.sql,*.q,*/node_modules/*,target/selenium/*,*/target/*,*/repo_universe/*,*/screenshots/*,*.json.gz,*.png,*.xml.gz,*/target/* " au FileType java :so /Users/ahirreddy/.vim/bundle/JavaKit/vim/JavaKit.vim" " CommandT Options @@ -174,3 +174,10 @@ let g:CommandTMaxFiles=10000000 let g:CommandTFileScanner="git" :set hidden + +if has("gui_running") + let s:uname = system("uname") + if s:uname == "Darwin\n" + set guifont=Inconsolata\ for\ Powerline:h15 + endif +endif diff --git a/templates/zshrc.zsh-template b/templates/zshrc.zsh-template index 5387beac7..19a397a3a 100644 --- a/templates/zshrc.zsh-template +++ b/templates/zshrc.zsh-template @@ -54,6 +54,7 @@ export PATH=$HOME/bin:/usr/local/bin:$PATH alias glc='git log --graph --pretty="format:%C(yellow)%h%Cgreen%d%Creset %s %C(white) %an, %ar%Creset"' +alias gd='git difftool -d --tool=meld' source $ZSH/oh-my-zsh.sh