Compare commits

...

5 Commits

5 changed files with 30 additions and 8 deletions

View File

@ -14,3 +14,7 @@ refreshPeriod = "168h"
type = "git-repo"
url = "https://github.com/Piraty/xxtools.git"
refreshPeriod = "168h"
[".local/share/zsh-history-substring-search"]
type = "archive"
url = "https://github.com/zsh-users/zsh-history-substring-search/archive/refs/tags/v1.1.0.tar.gz"

View File

@ -24,7 +24,7 @@ bin/kde-rofi-rbw-totp
bin/kde-rofi-rbw-autotype
{{ end }}
{{ if eq .chezmoi.hostname "WGC100C647H24" }}
{{ if eq .chezmoi.hostname "UGC13335X84" }}
.config/beets
.config/davfs2/secrets
.config/kitty

View File

@ -37,7 +37,7 @@ export NPM_CONFIG_INIT_MODULE="$XDG_CONFIG_HOME"/npm/config/npm-init.js
export NPM_CONFIG_TMP="$XDG_RUNTIME_DIR"/npm
export NPM_CONFIG_USERCONFIG="$XDG_CONFIG_HOME"/npm/npmrc
export PASSWORD_STORE_DIR="$XDG_DATA_HOME"/pass
export PATH="$HOME/.local/bin:$PATH:$XDG_DATA_HOME/xxtools:$XDG_DATA_HOME/flutter/bin"
export PATH="$HOME/.local/bin:$PATH:$HOME/.android/Sdk/platform-tools:$XDG_DATA_HOME/xxtools:$XDG_DATA_HOME/flutter/bin"
export PYTHON_HISTORY="$XDG_STATE_HOME"/python_history
export RUSTUP_HOME="$XDG_DATA_HOME"/rustup
export SQLITE_HISTORY="$XDG_CACHE_HOME"/sqlite_history

View File

@ -1,7 +1,6 @@
[core]
autocrlf = input
safecrlf = warn
pager = delta
[user]
email = joel@beckmeyer.us
name = Joel Beckmeyer
@ -25,7 +24,5 @@
required = true
[pull]
rebase = false
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true # use n and N to move between diff sections
[credential "https://github.com"]
helper = !/usr/bin/gh auth git-credential

View File

@ -84,7 +84,22 @@ if command -v keychain >/dev/null; then
rbw unlock
SSH_ASKPASS=get_id_rsa_pass SSH_ASKPASS_REQUIRE=force ssh-add ~/.ssh/id_rsa
fi
### End user configuration
# Command not found handler
if [ -x /usr/lib/command-not-found -o -x /usr/share/command-not-found/command-not-found ]; then
function command_not_found_handler {
if [ -x /usr/lib/command-not-found ]; then
/usr/lib/command-not-found -- "$1"
return $?
elif [ -x /usr/share/command-not-found/command-not-found ]; then
/usr/share/command-not-found/command-not-found -- "$1"
return $?
else
printf "zsh: command not found: %s\n" "$1" >&2
return 127
fi
}
fi
### hooks/includes
for plugin in zsh-syntax-highlighting zsh-history-substring-search \
@ -93,6 +108,10 @@ for plugin in zsh-syntax-highlighting zsh-history-substring-search \
source /usr/share/zsh/plugins/$plugin/${plugin}.zsh
fi
done
source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source "$HOME/.local/share/zsh-history-substring-search/zsh-history-substring-search-1.1.0/zsh-history-substring-search.zsh"
source /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh
bindkey '^[[A' history-substring-search-up
bindkey '^[[B' history-substring-search-down
bindkey -M vicmd 'k' history-substring-search-up
@ -101,3 +120,5 @@ bindkey -M vicmd 'j' history-substring-search-down
if command -v pazi &>/dev/null; then
eval "$(pazi init zsh)" # or 'bash'
fi
### End user configuration