Commit c4236f3f authored by Dom Sekotill's avatar Dom Sekotill
Browse files

added zsh configs

parent 8dbceba0
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -7,6 +7,8 @@
/.viminfo
/.*_history
/.sudo_as_admin_successful
/.zsh-update
/.zcompdump*

# other version control systems
.svn/

.oh-my-zsh @ 9c08641d

Original line number Diff line number Diff line
Subproject commit 9c08641d7c2aae0c82fa5ad91f94c67b70115ba5

.zprofile

0 → 100644
+8 −0
Original line number Diff line number Diff line
source ~/.shell/funcs

# Source all-shell startup profile environments
source_first ~/.profile /etc/profile
source_each ~/.shell/$(get_platform)/profile ~/.bash_local

# Automatically run terminal multiplexer on SSH connect
[ -n "$SSH_TTY" ] && [ "x$TERM" != xscreen ] && has tmux && exec tmux -u attach

.zshrc

0 → 100644
+13 −0
Original line number Diff line number Diff line
source ~/.shell/funcs
source_each ~/.shell/aliases ~/.shell/$(get_platform)/aliases ~/.aliases

plugins=(git django pipi python virtualenv virtualenvwrapper)

ZSH_THEME="juanghurtado"

# activate oh-my-zsh
export ZSH=$HOME/.oh-my-zsh
if [[ ! -d $ZSH ]] && has git; then
	git clone git://github.com/robbyrussell/oh-my-zsh.git $ZSH
fi
[[ -d $ZSH ]] && source $ZSH/oh-my-zsh.sh