Compare commits

..

No commits in common. "a7fe63b0958c689c97d4983a0a4ccc412aa6148a" and "981b1d800813121ccdc66bf4e97abdbe970e3454" have entirely different histories.

5 changed files with 8 additions and 30 deletions

View File

@ -14,7 +14,3 @@ 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 "UGC13335X84" }}
{{ if eq .chezmoi.hostname "WGC100C647H24" }}
.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:$HOME/.android/Sdk/platform-tools:$XDG_DATA_HOME/xxtools:$XDG_DATA_HOME/flutter/bin"
export PATH="$HOME/.local/bin:$PATH:$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,6 +1,7 @@
[core]
autocrlf = input
safecrlf = warn
pager = delta
[user]
email = joel@beckmeyer.us
name = Joel Beckmeyer
@ -24,5 +25,7 @@
required = true
[pull]
rebase = false
[credential "https://github.com"]
helper = !/usr/bin/gh auth git-credential
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true # use n and N to move between diff sections

View File

@ -84,22 +84,7 @@ 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
# 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
### End user configuration
### hooks/includes
for plugin in zsh-syntax-highlighting zsh-history-substring-search \
@ -108,10 +93,6 @@ 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
@ -120,5 +101,3 @@ 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