this string has no description
.zshrc edited
28 lines 682 B view raw
1# Keep a longer history 2HISTSIZE=10000 3SAVEHIST=10000 4 5# Enable history beginning search 6bindkey '\e[A' history-search-backward 7bindkey '\e[B' history-search-forward 8 9# Enable completions 10autoload -Uz compinit; compinit 11 12# Use starship 13eval "$(starship init zsh)" 14 15# Preferences 16export ZSH_AUTOSUGGEST_STRATEGY=(history completion) 17export EDITOR="codium-insiders --wait" 18export CLICOLOR=1 19 20# Personal aliases 21edit() { 22 sh -c "$EDITOR \"\$@\"" -- "$@" 23} 24alias py=python3 25 26# Behaviors 27source /opt/homebrew/share/zsh-autosuggestions/zsh-autosuggestions.zsh 28source /opt/homebrew/opt/zsh-fast-syntax-highlighting/share/zsh-fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh