2024-05-05 13:55:06 +01:00
|
|
|
|
|
|
|
typeset -U path cdpath fpath manpath
|
|
|
|
|
|
|
|
|
|
|
|
# Oh-My-Zsh/Prezto calls compinit during initialization,
|
|
|
|
# calling it twice causes slight start up slowdown
|
|
|
|
# as all $fpath entries will be traversed again.
|
|
|
|
|
|
|
|
|
2024-05-06 18:27:59 +01:00
|
|
|
# source /nix/store/8nacxwlkmmlhh9ws1jq27cksr91bnppr-zsh-autosuggestions-0.7.0/share/zsh-autosuggestions/zsh-autosuggestions.zsh
|
2024-05-05 13:55:06 +01:00
|
|
|
|
|
|
|
# oh-my-zsh extra settings for plugins
|
|
|
|
|
|
|
|
# oh-my-zsh configuration generated by NixOS
|
2024-05-06 18:53:45 +01:00
|
|
|
# plugins=(colored-man-pages lol rand-quote)
|
2024-05-05 13:55:06 +01:00
|
|
|
|
|
|
|
|
2024-05-06 18:53:45 +01:00
|
|
|
# source $ZSH/oh-my-zsh.sh
|
2024-05-05 13:55:06 +01:00
|
|
|
|
|
|
|
|
2024-05-06 18:53:45 +01:00
|
|
|
# source /nix/store/bk46a9hcbw8hi3qh5f15x41yskw3jpvv-transient.zsh
|
2024-05-05 13:55:06 +01:00
|
|
|
|
|
|
|
GPG_TTY="$(tty)"
|
|
|
|
export GPG_TTY
|
|
|
|
|
|
|
|
if [[ $TERM != "dumb" ]]; then
|
2024-05-06 18:53:45 +01:00
|
|
|
command -v starship && eval "$(starship init zsh)"
|
|
|
|
command -v direnv && eval "$(direnv hook zsh)"
|
2024-05-05 13:55:06 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Aliases
|
2024-05-06 18:53:45 +01:00
|
|
|
alias eza="eza --icons --git --octal-permissions"
|
|
|
|
alias gsa="git-sync-all"
|
|
|
|
alias la="eza -a"
|
|
|
|
alias ll="eza -l"
|
|
|
|
alias lla="eza -la"
|
|
|
|
alias ls="eza"
|
|
|
|
alias lt="eza --tree"
|