Compare commits
2 Commits
061b0cc0f0
...
f31d40273c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f31d40273c | ||
|
|
74acb08ca2 |
@ -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 -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
|
Hostname tonttu.scalene.net
|
||||||
|
|||||||
20
zsh/.zshrc
20
zsh/.zshrc
@ -85,13 +85,19 @@ for env in $HOME/.okta/.env $HOME/.aws/.env $HOME/config/git/.env; do
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
autoload bashcompinit && bashcompinit
|
# command line completion
|
||||||
autoload -Uz compinit
|
autoload -U +X bashcompinit && bashcompinit
|
||||||
compinit
|
autoload -Uz 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}"
|
||||||
|
|
||||||
@ -109,13 +115,7 @@ 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'
|
||||||
|
|
||||||
autoload -U +X bashcompinit && bashcompinit
|
#compinit
|
||||||
autoload -Uz compinit
|
|
||||||
compinit
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user