Compare commits

..

No commits in common. "f31d40273cf2cadd816dbd5385cb4f3ee542724f" and "061b0cc0f0695a5886603a6df83d277a72ab59ea" have entirely different histories.

2 changed files with 11 additions and 11 deletions

View File

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

View File

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