Skip to content

Instantly share code, notes, and snippets.

@jiikko
Created May 29, 2013 05:28
Show Gist options
  • Save jiikko/f2a94ffe6436db48d912 to your computer and use it in GitHub Desktop.
Save jiikko/f2a94ffe6436db48d912 to your computer and use it in GitHub Desktop.
.zshrc for minimam
alias ls='ls -F --color=auto'
bindkey -e
export PS1="${USER}@${HOST}:%~%# "
zstyle ':completion:*:default' menu select=1
zstyle ':completion:*' matcher-list '' 'm:{a-zA-Z}={A-Za-z}'
autoload -U compinit
compinit
HISTFILE=$HOME/.zsh-history
HISTSIZE=100000
SAVEHIST=100000
setopt extended_history
function history-all { history -E 1 }
setopt share_history
setopt histignorealldups
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment