Make the prompt look nicer in my theme.

This commit is contained in:
David Tomaschik
2014-10-16 13:19:04 -07:00
parent c400ab787f
commit c32b9ef765
2 changed files with 7 additions and 2 deletions

5
zshrc
View File

@@ -32,7 +32,7 @@ alias ls='ls --color'
if [ -d $HOME/.oh-my-zsh ] ; then
ZSH=$HOME/.oh-my-zsh
ZSH_THEME="matir"
ZSH_CUSTOM="$HOME/.dotfiles/zsh_custom"
ZSH_CUSTOM="$HOME/.zsh_custom"
plugins=(git encode64 gpg-agent pep8 pip python tmux urltools extract sudo)
source $ZSH/oh-my-zsh.sh
unset ZSH_THEME
@@ -43,3 +43,6 @@ bindkey '^[[A' history-search-backward
bindkey '^[[B' history-search-forward
bindkey '^[[1;5C' forward-word
bindkey '^[[1;5D' backward-word
# Load any local settings
if [ -e $HOME/.zsh_local ] ; then source $HOME/.zsh_local ; fi