Skip to content

Instantly share code, notes, and snippets.

@Kyeongan
Last active December 4, 2020 20:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kyeongan/f9e71cbcfb3599d354b834d5b5d8087a to your computer and use it in GitHub Desktop.
Save Kyeongan/f9e71cbcfb3599d354b834d5b5d8087a to your computer and use it in GitHub Desktop.
Zsh config
# Shell History Increase
export HISTSIZE=100000
export HISTFILESIZE=100000
export HISTFILE=~/.zhistory
setopt HIST_FIND_NO_DUPS
setopt inc_append_history
setopt share_history
# Zsh Prompt
PROMPT="$fg[yellow]%}$USER@%{$fg[green]%}%m:%{$fg[blue]%}%~$fg[white]$ "
# Tell grep to highlight matches
export GREP_OPTIONS='--color=auto'
setopt autolist
setopt no_always_last_prompt
unsetopt menucomplete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment