# Keep a longer history HISTSIZE=10000 SAVEHIST=10000 # Enable history beginning search bindkey '\e[A' history-search-backward bindkey '\e[B' history-search-forward # Enable completions autoload -Uz compinit; compinit # Use starship eval "$(starship init zsh)" # Preferences export ZSH_AUTOSUGGEST_STRATEGY=(history completion) export EDITOR="codium-insiders --wait" export CLICOLOR=1 # Personal aliases edit() { sh -c "$EDITOR \"\$@\"" -- "$@" } alias py=python3 # Behaviors source /opt/homebrew/share/zsh-autosuggestions/zsh-autosuggestions.zsh source /opt/homebrew/opt/zsh-fast-syntax-highlighting/share/zsh-fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh