This commit is contained in:
Isaac Shoebottom 2025-01-26 21:28:30 -04:00
parent fa983e45cb
commit ec85cc899e

View File

@ -11,6 +11,9 @@ compinit
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
bindkey '^[[H' beginning-of-line
bindkey '^[[F' end-of-line
# Set aliases # Set aliases
alias ls="eza --icons --long" alias ls="eza --icons --long"
alias grep="ugrep" alias grep="ugrep"
@ -24,7 +27,7 @@ alias l="ls --ignore-glob '$([ -f .hidden ] && cat .hidden | tr '\n' '|')'"
# Helpful tool: https://zsh-prompt-generator.site/ # Helpful tool: https://zsh-prompt-generator.site/
# On github: https://github.com/k-yokoishi/zsh-prompt-generator # On github: https://github.com/k-yokoishi/zsh-prompt-generator
PROMPT="[%n@%m %~]$ " PROMPT="[%n@%m %~]$ "
RPROMPT="%?:%h" RPROMPT="%?:%h | %*"
# CLI programs # CLI programs
EDITOR=micro EDITOR=micro