Created
December 14, 2025 12:28
-
-
Save jvarn/771785c5b48b7874b71d1bc15854ba86 to your computer and use it in GitHub Desktop.
zsh usability essentials (macOS)
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
| # 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