Skip to content

Instantly share code, notes, and snippets.

@ruph
Last active November 1, 2015 00:49
Show Gist options
  • Save ruph/964df57312ef577eb5da to your computer and use it in GitHub Desktop.
Save ruph/964df57312ef577eb5da to your computer and use it in GitHub Desktop.
zsh settings
export EDITOR=vim
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=10240
SAVEHIST=10240
setopt appendhistory extendedglob nomatch
unsetopt beep
bindkey -e
WORDCHARS=${WORDCHARS//\/}
# End of lines configured by zsh-newuser-install
# The following lines were added by compinstall
zstyle :compinstall filename '/home/ruph/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall
autoload -U colors && colors
PROMPT="%{$fg[red]%}%n%{$reset_color%}@%{$fg[red]%}%m %{$fg[yellow]%}%1~ %{$reset_color%}%# "
alias vi='vim'
export EDITOR=vi
umask 002
# Good for Emacs
TERM=xterm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment