Created
October 6, 2022 01:39
-
-
Save unknowntpo/0f2a0cbf1328af7fbe50ae5c215a1fbc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
autoload -Uz compinit | |
compinit | |
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc. | |
# Initialization code that may require console input (password prompts, [y/n] | |
# confirmations, etc.) must go above this block; everything else may go below. | |
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then | |
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" | |
fi | |
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="$HOME/.oh-my-zsh" | |
# Set name of the theme to load --- if set to "random", it will | |
# load a random theme each time oh-my-zsh is loaded, in which case, | |
# to know which specific one was loaded, run: echo $RANDOM_THEME | |
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes | |
ZSH_THEME="powerlevel10k/powerlevel10k" | |
# For k8s krew | |
export PATH="${KREW_ROOT:-$HOME/.krew}/bin:$PATH" | |
# For go install | |
export GOPATH="$HOME/go" | |
PATH="$GOPATH/bin:$PATH" | |
# For rust | |
PATH="/opt/homebrew/bin/rustup-init:$PATH" | |
fpath+=~/.zfunc | |
plugins+=(rust) | |
# oh my zsh vi mode | |
plugins+=(vi-mode) | |
MODE_INDICATOR="%F{white}+%f" | |
INSERT_MODE_INDICATOR="%F{yellow}+%f" | |
# Make zsh like fish | |
# https://gist.github.com/abhigenie92/a907cdf8a474aa6b569ebe89aeee560d | |
plugins+=(zsh-autosuggestions zsh-history-substring-search zsh-syntax-highlighting) | |
export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=white' | |
# For brew postgres | |
alias pg_start="launchctl load ~/Library/LaunchAgents" | |
alias pg_stop="launchctl unload ~/Library/LaunchAgents" | |
# for kubernetes autocomplete | |
# Ref: https://kubernetes.io/docs/tasks/tools/included/optional-kubectl-configs-zsh/ | |
source <(kubectl completion zsh) | |
alias kc="kubectl" | |
# Set list of themes to pick from when loading at random | |
# Setting this variable when ZSH_THEME=random will cause zsh to load | |
# a theme from this variable instead of looking in $ZSH/themes/ | |
# If set to an empty array, this variable will have no effect. | |
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" ) | |
# Uncomment the following line to use case-sensitive completion. | |
# CASE_SENSITIVE="true" | |
# Uncomment the following line to use hyphen-insensitive completion. | |
# Case-sensitive completion must be off. _ and - will be interchangeable. | |
# HYPHEN_INSENSITIVE="true" | |
# Uncomment one of the following lines to change the auto-update behavior | |
# zstyle ':omz:update' mode disabled # disable automatic updates | |
# zstyle ':omz:update' mode auto # update automatically without asking | |
# zstyle ':omz:update' mode reminder # just remind me to update when it's time | |
# Uncomment the following line to change how often to auto-update (in days). | |
# zstyle ':omz:update' frequency 13 | |
# Uncomment the following line if pasting URLs and other text is messed up. | |
# DISABLE_MAGIC_FUNCTIONS="true" | |
# Uncomment the following line to disable colors in ls. | |
# DISABLE_LS_COLORS="true" | |
# Uncomment the following line to disable auto-setting terminal title. | |
# DISABLE_AUTO_TITLE="true" | |
# Uncomment the following line to enable command auto-correction. | |
# ENABLE_CORRECTION="true" | |
# Uncomment the following line to display red dots whilst waiting for completion. | |
# You can also set it to another string to have that shown instead of the default red dots. | |
# e.g. COMPLETION_WAITING_DOTS="%F{yellow}waiting...%f" | |
# Caution: this setting can cause issues with multiline prompts in zsh < 5.7.1 (see #5765) | |
# COMPLETION_WAITING_DOTS="true" | |
# Uncomment the following line if you want to disable marking untracked files | |
# under VCS as dirty. This makes repository status check for large repositories | |
# much, much faster. | |
# DISABLE_UNTRACKED_FILES_DIRTY="true" | |
# Uncomment the following line if you want to change the command execution time | |
# stamp shown in the history command output. | |
# You can set one of the optional three formats: | |
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd" | |
# or set a custom format using the strftime function format specifications, | |
# see 'man strftime' for details. | |
# HIST_STAMPS="mm/dd/yyyy" | |
# Would you like to use another custom folder than $ZSH/custom? | |
# ZSH_CUSTOM=/path/to/new-custom-folder | |
# Which plugins would you like to load? | |
# Standard plugins can be found in $ZSH/plugins/ | |
# Custom plugins may be added to $ZSH_CUSTOM/plugins/ | |
# Example format: plugins=(rails git textmate ruby lighthouse) | |
# Add wisely, as too many plugins slow down shell startup. | |
plugins+=(git) | |
source $ZSH/oh-my-zsh.sh | |
# User configuration | |
# export MANPATH="/usr/local/man:$MANPATH" | |
# You may need to manually set your language environment | |
# export LANG=en_US.UTF-8 | |
# Preferred editor for local and remote sessions | |
# if [[ -n $SSH_CONNECTION ]]; then | |
# export EDITOR='vim' | |
# else | |
# export EDITOR='mvim' | |
# fi | |
# Compilation flags | |
# export ARCHFLAGS="-arch x86_64" | |
# Set personal aliases, overriding those provided by oh-my-zsh libs, | |
# plugins, and themes. Aliases can be placed here, though oh-my-zsh | |
# users are encouraged to define aliases within the ZSH_CUSTOM folder. | |
# For a full list of active aliases, run `alias`. | |
# | |
# Example aliases | |
# alias zshconfig="mate ~/.zshrc" | |
# alias ohmyzsh="mate ~/.oh-my-zsh" | |
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh. | |
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh | |
#compdef _limactl limactl | |
# zsh completion for limactl -*- shell-script -*- | |
__limactl_debug() | |
{ | |
local file="$BASH_COMP_DEBUG_FILE" | |
if [[ -n ${file} ]]; then | |
echo "$*" >> "${file}" | |
fi | |
} | |
_limactl() | |
{ | |
local shellCompDirectiveError=1 | |
local shellCompDirectiveNoSpace=2 | |
local shellCompDirectiveNoFileComp=4 | |
local shellCompDirectiveFilterFileExt=8 | |
local shellCompDirectiveFilterDirs=16 | |
local lastParam lastChar flagPrefix requestComp out directive comp lastComp noSpace | |
local -a completions | |
__limactl_debug "\n========= starting completion logic ==========" | |
__limactl_debug "CURRENT: ${CURRENT}, words[*]: ${words[*]}" | |
# The user could have moved the cursor backwards on the command-line. | |
# We need to trigger completion from the $CURRENT location, so we need | |
# to truncate the command-line ($words) up to the $CURRENT location. | |
# (We cannot use $CURSOR as its value does not work when a command is an alias.) | |
words=("${=words[1,CURRENT]}") | |
__limactl_debug "Truncated words[*]: ${words[*]}," | |
lastParam=${words[-1]} | |
lastChar=${lastParam[-1]} | |
__limactl_debug "lastParam: ${lastParam}, lastChar: ${lastChar}" | |
# For zsh, when completing a flag with an = (e.g., limactl -n=<TAB>) | |
# completions must be prefixed with the flag | |
setopt local_options BASH_REMATCH | |
if [[ "${lastParam}" =~ '-.*=' ]]; then | |
# We are dealing with a flag with an = | |
flagPrefix="-P ${BASH_REMATCH}" | |
fi | |
# Prepare the command to obtain completions | |
requestComp="${words[1]} __complete ${words[2,-1]}" | |
if [ "${lastChar}" = "" ]; then | |
# If the last parameter is complete (there is a space following it) | |
# We add an extra empty parameter so we can indicate this to the go completion code. | |
__limactl_debug "Adding extra empty parameter" | |
requestComp="${requestComp} \"\"" | |
fi | |
__limactl_debug "About to call: eval ${requestComp}" | |
# Use eval to handle any environment variables and such | |
out=$(eval ${requestComp} 2>/dev/null) | |
__limactl_debug "completion output: ${out}" | |
# Extract the directive integer following a : from the last line | |
local lastLine | |
while IFS='\n' read -r line; do | |
lastLine=${line} | |
done < <(printf "%s\n" "${out[@]}") | |
__limactl_debug "last line: ${lastLine}" | |
if [ "${lastLine[1]}" = : ]; then | |
directive=${lastLine[2,-1]} | |
# Remove the directive including the : and the newline | |
local suffix | |
(( suffix=${#lastLine}+2)) | |
out=${out[1,-$suffix]} | |
else | |
# There is no directive specified. Leave $out as is. | |
__limactl_debug "No directive found. Setting do default" | |
directive=0 | |
fi | |
__limactl_debug "directive: ${directive}" | |
__limactl_debug "completions: ${out}" | |
__limactl_debug "flagPrefix: ${flagPrefix}" | |
if [ $((directive & shellCompDirectiveError)) -ne 0 ]; then | |
__limactl_debug "Completion received error. Ignoring completions." | |
return | |
fi | |
while IFS='\n' read -r comp; do | |
if [ -n "$comp" ]; then | |
# If requested, completions are returned with a description. | |
# The description is preceded by a TAB character. | |
# For zsh's _describe, we need to use a : instead of a TAB. | |
# We first need to escape any : as part of the completion itself. | |
comp=${comp//:/\\:} | |
local tab=$(printf '\t') | |
comp=${comp//$tab/:} | |
__limactl_debug "Adding completion: ${comp}" | |
completions+=${comp} | |
lastComp=$comp | |
fi | |
done < <(printf "%s\n" "${out[@]}") | |
if [ $((directive & shellCompDirectiveNoSpace)) -ne 0 ]; then | |
__limactl_debug "Activating nospace." | |
noSpace="-S ''" | |
fi | |
if [ $((directive & shellCompDirectiveFilterFileExt)) -ne 0 ]; then | |
# File extension filtering | |
local filteringCmd | |
filteringCmd='_files' | |
for filter in ${completions[@]}; do | |
if [ ${filter[1]} != '*' ]; then | |
# zsh requires a glob pattern to do file filtering | |
filter="\*.$filter" | |
fi | |
filteringCmd+=" -g $filter" | |
done | |
filteringCmd+=" ${flagPrefix}" | |
__limactl_debug "File filtering command: $filteringCmd" | |
_arguments '*:filename:'"$filteringCmd" | |
elif [ $((directive & shellCompDirectiveFilterDirs)) -ne 0 ]; then | |
# File completion for directories only | |
local subdir | |
subdir="${completions[1]}" | |
if [ -n "$subdir" ]; then | |
__limactl_debug "Listing directories in $subdir" | |
pushd "${subdir}" >/dev/null 2>&1 | |
else | |
__limactl_debug "Listing directories in ." | |
fi | |
local result | |
_arguments '*:dirname:_files -/'" ${flagPrefix}" | |
result=$? | |
if [ -n "$subdir" ]; then | |
popd >/dev/null 2>&1 | |
fi | |
return $result | |
else | |
__limactl_debug "Calling _describe" | |
if eval _describe "completions" completions $flagPrefix $noSpace; then | |
__limactl_debug "_describe found some completions" | |
# Return the success of having called _describe | |
return 0 | |
else | |
__limactl_debug "_describe did not find completions." | |
__limactl_debug "Checking if we should do file completion." | |
if [ $((directive & shellCompDirectiveNoFileComp)) -ne 0 ]; then | |
__limactl_debug "deactivating file completion" | |
# We must return an error code here to let zsh know that there were no | |
# completions found by _describe; this is what will trigger other | |
# matching algorithms to attempt to find completions. | |
# For example zsh can match letters in the middle of words. | |
return 1 | |
else | |
# Perform file completion | |
__limactl_debug "Activating file completion" | |
# We must return the result of this command, so it must be the | |
# last command, or else we must store its result to return it. | |
_arguments '*:filename:_files'" ${flagPrefix}" | |
fi | |
fi | |
fi | |
} | |
# don't run the completion function when being source-ed or eval-ed | |
if [ "$funcstack[1]" = "_limactl" ]; then | |
_limactl | |
fi | |
autoload -U +X bashcompinit && bashcompinit | |
complete -o nospace -C /opt/homebrew/bin/mc mc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment