Skip to content

Instantly share code, notes, and snippets.

@fox34
fox34 / Linux.zshrc
Created August 24, 2025 09:37
Lightweight and simple zsh "framework" with autosuggestions and syntax highlighting
# History
HISTFILE="$HOME/.zsh_history"
HISTSIZE=10000
SAVEHIST=10000
setopt extended_history # record timestamp of command in HISTFILE
setopt hist_expire_dups_first # delete duplicates first when HISTFILE size exceeds HISTSIZE
setopt hist_ignore_dups # ignore duplicated commands history list
setopt hist_ignore_all_dups # only show last variant of duplicates