Compare commits

..

2 Commits

Author SHA1 Message Date
Jason Swank
f31d40273c compinit 2025-01-10 01:50:20 +00:00
Jason Swank
74acb08ca2 local git 2025-01-10 01:30:26 +00:00
2 changed files with 11 additions and 11 deletions

View File

@ -8,5 +8,5 @@ Host www.scalene.net
Host tilde.club
User eke
Match host git.scalene.net exec "ip route |grep -E '(^192.168.101.0/24|^100.115.92.192/28)'"
Match host git.scalene.net exec "ip route |grep -q -E '^(192.168.101.0/24|100.115.92.192/28)'"
Hostname tonttu.scalene.net

View File

@ -85,13 +85,19 @@ for env in $HOME/.okta/.env $HOME/.aws/.env $HOME/config/git/.env; do
fi
done
autoload bashcompinit && bashcompinit
autoload -Uz compinit
compinit
# command line completion
autoload -U +X bashcompinit && bashcompinit
autoload -Uz compinit && compinit
# kubectl
[[ $commands[kubectl] ]] && source <(kubectl completion zsh)
# AWS CLI completion
if command -v aws_completer > /dev/null; then
complete -C aws_completer aws
fi
# Highlight the current autocomplete option
zstyle ':completion:*' list-colors "${(s.:.)LS_COLORS}"
@ -109,13 +115,7 @@ fi
zstyle :compinstall filename '~/.zshrc'
if [[ -x /usr/bin/aws_completer ]]; then
complete -C '/usr/bin/aws_completer' aws
fi
#zstyle ':completion:*' completer _complete _ignored
#zstyle :compinstall filename '~/.zshrc'
autoload -U +X bashcompinit && bashcompinit
autoload -Uz compinit
compinit
#compinit