Created
October 3, 2017 21:38
-
-
Save marcusandre/4edb241cba054e3308251475eef8cc7a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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