dotfiles

Unnamed repository; edit this file 'description' to name the repository.
git clone git://edryd.org/dotfiles
Log | Files | Refs

commit d4d2bde3956b8b4494f7b186fd66af2543dafe52
parent 0f7cee2027fcf245864ebe0a2136a2bdafa0a16b
Author: Ed van Bruggen <edvb54@gmail.com>
Date:   Tue, 22 Dec 2015 22:12:34 -0800

Zsh: Add zshrc file

Diffstat:
zshrc | 53+++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 53 insertions(+), 0 deletions(-)

diff --git a/zshrc b/zshrc @@ -0,0 +1,53 @@ +# basic {{{1 +setopt autocd extendedglob nomatch notify +unsetopt beep +bindkey -e + +# history settings +HISTFILE=~/.histfile +HISTSIZE=1000 +SAVEHIST=1000 + +# completion stuf +zstyle ':completion:*' completer _complete _ignored +zstyle :compinstall filename '/home/ed/.zshrc' +autoload -Uz compinit +compinit + +# load files +source ~/bin/ED.sh +source ~/bin/checkium.sh +source ~/bin/colors.sh +source ~/bin/git-prompt.sh +source ~/bin/z.sh + +# prompt statement {{{1 +# change color of branch name +git_color() { + if [ -d .git ] || git rev-parse --git-dir > /dev/null 2>&1; then + local color="${Cyan}" + + # modified + git diff --no-ext-diff --quiet --exit-code || color="${Red}" + + # staged + if git rev-parse --quiet --verify HEAD >/dev/null; then + git diff-index --cached --quiet HEAD -- || color="${IRed}" + fi + + # stashed + git rev-parse --verify refs/stash >/dev/null 2>&1 && color="${Yellow}" + + echo "$color" + fi +} + +# PS1="%{$Blue%}%M \ +# $(checkium_color)$(checkium_random_face) \ +# $(git_color)$(__git_ps1 "%s ")%{$Yellow%}\ +# $([ $(jobs | wc -l) -gt 0 ] && echo "%j ")%{$White%}\ +# \$%{$Color_Off%} " + +PS1="%{$White%}\$%{$Color_Off%} " + +PS2="%{$White%}\$%{$Color_Off%} "