diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-09-11 09:40:55 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-09-11 09:40:55 -0500 |
commit | b9f515e9a6680207c855215f09659938dd777720 (patch) | |
tree | 2d15cf339bb416d680e0240d76f03829b55c9cef /dot_config/zsh/dot_zshrc | |
parent | add more XDG (diff) | |
download | dotfiles-b9f515e9a6680207c855215f09659938dd777720.tar dotfiles-b9f515e9a6680207c855215f09659938dd777720.tar.gz dotfiles-b9f515e9a6680207c855215f09659938dd777720.tar.bz2 dotfiles-b9f515e9a6680207c855215f09659938dd777720.tar.lz dotfiles-b9f515e9a6680207c855215f09659938dd777720.tar.xz dotfiles-b9f515e9a6680207c855215f09659938dd777720.tar.zst dotfiles-b9f515e9a6680207c855215f09659938dd777720.zip |
Simplify
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '')
-rw-r--r-- | dot_config/zsh/dot_zshrc | 42 |
1 files changed, 9 insertions, 33 deletions
diff --git a/dot_config/zsh/dot_zshrc b/dot_config/zsh/dot_zshrc index 4cd42fe..829b5a7 100644 --- a/dot_config/zsh/dot_zshrc +++ b/dot_config/zsh/dot_zshrc @@ -4,25 +4,24 @@ [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]] && source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" # add .local/bin to PATH export PATH="${XDG_BIN_HOME:-$HOME/.local/bin}:$PATH" -#export PATH="${$(find ~/.local/bin -type d -printf %p:)%%:}:$PATH" - -eval "$(antidot init)" -#eval "$(lesspipe.sh)" - -# Luke's config for the Zoomer Shell if [ -f /etc/os-release ] then . /etc/os-release else - ID=`uname -s` + ID=$(uname -s) fi case "$ID" in Darwin ) source /usr/local/share/powerlevel10k/powerlevel10k.zsh-theme ;; * ) - [ -f /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme ] && source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme || source ${XDG_DATA_HOME:-$HOME/.local/share}/powerlevel10k/powerlevel10k.zsh-theme + if [ -f /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme ] + then + source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme + else + source ${XDG_DATA_HOME:-$HOME/.local/share}/powerlevel10k/powerlevel10k.zsh-theme + fi ;; esac @@ -53,9 +52,7 @@ setopt HIST_VERIFY # Don't execute immediately upon history expans setopt HIST_BEEP # Beep when accessing nonexistent history. # Load aliases and shortcuts if existent. -[ -f "${XDG_CONFIG_HOME:-$HOME/.config}/shell/shortcutrc" ] && source "${XDG_CONFIG_HOME:-$HOME/.config}/shell/shortcutrc" -[ -f "${XDG_CONFIG_HOME:-$HOME/.config}/shell/aliasrc" ] && source "${XDG_CONFIG_HOME:-$HOME/.config}/shell/aliasrc" -[ -f "${XDG_CONFIG_HOME:-$HOME/.config}/shell/zshnameddirrc" ] && source "${XDG_CONFIG_HOME:-$HOME/.config}/shell/zshnameddirrc" +[ -f "${XDG_CONFIG_HOME:-$HOME/.config}/zsh/aliasrc" ] && source "${XDG_CONFIG_HOME:-$HOME/.config}/zsh/aliasrc" [ -f "${XDG_CONFIG_HOME:-$HOME/.config}/zsh/.zshopts" ] && source "${XDG_CONFIG_HOME:-$HOME/.config}/zsh/.zshopts" # Basic auto/tab complete: @@ -71,27 +68,7 @@ _comp_options+=(globdots) # Include hidden files. [[ ! -f ~/.config/zsh/.p10k.zsh ]] || source ~/.config/zsh/.p10k.zsh [[ ! -f ~/.config/zsh/keybindings.zsh ]] || source ~/.config/zsh/keybindings.zsh -# zsh parameter completion for the dotnet CLI -_dotnet_zsh_complete() -{ - local completions=("$(dotnet complete "$words")") - - # If the completion list is empty, just continue with filename selection - if [ -z "$completions" ] - then - _arguments '*::arguments: _normal' - return - fi - - # This is not a variable assignment, don't remove spaces! - _values = "${(ps:\n:)completions}" -} - -compdef _dotnet_zsh_complete dotnet - -[[ -f ~/.config/tabtab/zsh/__tabtab.zsh ]] && . ~/.config/tabtab/zsh/__tabtab.zsh || true - -if [ -n $WSL_DISTRO_NAME ] +if [ -n "$WSL_DISTRO_NAME" ] then command_not_found_handler() { if [ -x "$(command -v $0.exe)" ]; then @@ -105,7 +82,6 @@ then } fi - case "$ID" in debian | ubuntu ) source /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh |