Compare commits

...

5 Commits

Author SHA1 Message Date
meatballhat 49ee64f030 More fzf stuff 2026-06-21 10:05:39 -04:00
meatballhat 9451fb9a3a pure prompt resilience 2026-06-21 09:37:45 -04:00
meatballhat 6f2b75e9f4 Oh gosh attempting to shed oh-my-zsh 2026-06-21 09:26:02 -04:00
meatballhat 66e8c8735f More vonderful colors ah ah ah 2026-06-14 19:58:27 -04:00
meatballhat 2a397c68df Customize some pure colors 2026-06-13 22:58:02 -04:00
+34 -14
View File
@@ -45,6 +45,11 @@ path=(
/usr/local/texlive/2018/bin/x86_64-darwin
)
cdpath=(
$HOME/code
$HOME/src
)
plugins=(
archlinux
asdf
@@ -89,7 +94,7 @@ fi
fpath=(/usr/local/share/zsh/site-functions $fpath)
fpath=("${HOMEBREW_PREFIX}/share/zsh/site-functions" $fpath)
source $ZSH/oh-my-zsh.sh
#source $ZSH/oh-my-zsh.sh
unalias gb &>/dev/null
@@ -104,13 +109,13 @@ GPG_TTY="$(tty)"
export GPG_TTY
# The completion for aws is not compatible with $fpath :scream_cat:
if [[ -f /usr/local/share/zsh/site-functions/_aws ]]; then
source /usr/local/share/zsh/site-functions/_aws
fi
#if [[ -f /usr/local/share/zsh/site-functions/_aws ]]; then
# source /usr/local/share/zsh/site-functions/_aws
#fi
if [[ -f ~/.local/bin/aws_zsh_completer.sh ]]; then
source ~/.local/bin/aws_zsh_completer.sh
fi
#if [[ -f ~/.local/bin/aws_zsh_completer.sh ]]; then
# source ~/.local/bin/aws_zsh_completer.sh
#fi
if command -v xdg-open &>/dev/null; then
alias open=xdg-open
@@ -134,7 +139,6 @@ if psql --version &>/dev/null; then
fi
unsetopt correct_all
bindkey '^R' history-incremental-search-backward
__maybesource() {
if [[ -f "${1}" ]]; then
@@ -154,6 +158,12 @@ brew() {
brew "${@}"
}
direnv() {
unset -f direnv
eval "$(direnv hook zsh)"
direnv "${@}"
}
nvm() {
unset -f nvm
__maybesource /usr/share/nvm/init-nvm.sh silent
@@ -228,18 +238,20 @@ print(base64.b64encode(secrets.token_bytes(${nbytes} * 2)).decode(), end="")
EOPYTHON
}
cdpath=(
$HOME/code
$HOME/src
)
if fzf --version &>/dev/null; then
source <(fzf --zsh)
else
bindkey '^R' history-incremental-search-backward
fi
__maybesource ~/.cargo/env
__maybesource ~/.zshenv
__maybesource ~/.cargo/env
__maybesource ~/google-cloud-sdk/path.zsh.inc
__maybesource ~/google-cloud-sdk/completion.zsh.inc
__maybesource ~/.kiex/scripts/kiex
__maybesource ~/.config/tabtab/__tabtab.zsh
__maybesource ~/.sdkman/bin/sdkman-init.sh
__maybesource /etc/profile.d/fzf.zsh
autoload -Uz compinit
if [[ -n ~/.zcompdump(#qNmh-24) ]]; then
@@ -250,7 +262,15 @@ fi
autoload -U promptinit
promptinit
prompt pure
if prompt -l | grep -q pure; then
prompt pure
else
prompt fade red
fi
zstyle :prompt:pure:path color '#FFB86C'
zstyle :prompt:pure:prompt color '#50FA7B'
zstyle :prompt:pure:git:branch color '#BD93F9'
compdef _symfony_complete composer
compdef _symfony_complete dep