Compare commits
5 Commits
981b1d8008
...
a7fe63b095
Author | SHA1 | Date | |
---|---|---|---|
a7fe63b095 | |||
18c2686bec | |||
7fc46e0f13 | |||
a6f6c8d577 | |||
3ea2743893 |
@ -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"
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user