Skip to content

Instantly share code, notes, and snippets.

@jvarn
Created December 14, 2025 12:28
Show Gist options
  • Select an option

  • Save jvarn/771785c5b48b7874b71d1bc15854ba86 to your computer and use it in GitHub Desktop.

Select an option

Save jvarn/771785c5b48b7874b71d1bc15854ba86 to your computer and use it in GitHub Desktop.
zsh usability essentials (macOS)
# History prefix search
bindkey '^[[A' history-search-backward
bindkey '^[[B' history-search-forward
# Colourised commands
alias ls='ls -G'
alias grep='grep --color=auto'
alias diff='diff --color=auto'
export LESS='-R'
export LSCOLORS=GxFxCxDxBxegedabagaced
# Nicer history behaviour
setopt HIST_IGNORE_ALL_DUPS
setopt HIST_REDUCE_BLANKS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment