Skip to content

Instantly share code, notes, and snippets.

@marcusandre
Created October 3, 2017 21:38
Show Gist options
  • Save marcusandre/4edb241cba054e3308251475eef8cc7a to your computer and use it in GitHub Desktop.
Save marcusandre/4edb241cba054e3308251475eef8cc7a to your computer and use it in GitHub Desktop.
# Options
setopt emacs
setopt nobeep
setopt nonomatch
setopt shnullcmd
setopt extendedglob
setopt bashautolist
setopt noautomenu
setopt noalwayslastprompt
# Completions
autoload -Uz compinit && compinit
# History
setopt histignoredups
setopt histignorespace
setopt incappendhistory
setopt extendedhistory
SAVEHIST=10000
HISTSIZE=10000
HISTFILE=~/.zsh_history
# PATH
PATH=~/bin:$PATH
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment