Compare commits
No commits in common. "a7fe63b0958c689c97d4983a0a4ccc412aa6148a" and "981b1d800813121ccdc66bf4e97abdbe970e3454" have entirely different histories.
a7fe63b095
...
981b1d8008
@ -14,7 +14,3 @@ refreshPeriod = "168h"
|
|||||||
type = "git-repo"
|
type = "git-repo"
|
||||||
url = "https://github.com/Piraty/xxtools.git"
|
url = "https://github.com/Piraty/xxtools.git"
|
||||||
refreshPeriod = "168h"
|
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
|
bin/kde-rofi-rbw-autotype
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ if eq .chezmoi.hostname "UGC13335X84" }}
|
{{ if eq .chezmoi.hostname "WGC100C647H24" }}
|
||||||
.config/beets
|
.config/beets
|
||||||
.config/davfs2/secrets
|
.config/davfs2/secrets
|
||||||
.config/kitty
|
.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_TMP="$XDG_RUNTIME_DIR"/npm
|
||||||
export NPM_CONFIG_USERCONFIG="$XDG_CONFIG_HOME"/npm/npmrc
|
export NPM_CONFIG_USERCONFIG="$XDG_CONFIG_HOME"/npm/npmrc
|
||||||
export PASSWORD_STORE_DIR="$XDG_DATA_HOME"/pass
|
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 PYTHON_HISTORY="$XDG_STATE_HOME"/python_history
|
||||||
export RUSTUP_HOME="$XDG_DATA_HOME"/rustup
|
export RUSTUP_HOME="$XDG_DATA_HOME"/rustup
|
||||||
export SQLITE_HISTORY="$XDG_CACHE_HOME"/sqlite_history
|
export SQLITE_HISTORY="$XDG_CACHE_HOME"/sqlite_history
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
[core]
|
[core]
|
||||||
autocrlf = input
|
autocrlf = input
|
||||||
safecrlf = warn
|
safecrlf = warn
|
||||||
|
pager = delta
|
||||||
[user]
|
[user]
|
||||||
email = joel@beckmeyer.us
|
email = joel@beckmeyer.us
|
||||||
name = Joel Beckmeyer
|
name = Joel Beckmeyer
|
||||||
@ -24,5 +25,7 @@
|
|||||||
required = true
|
required = true
|
||||||
[pull]
|
[pull]
|
||||||
rebase = false
|
rebase = false
|
||||||
[credential "https://github.com"]
|
[interactive]
|
||||||
helper = !/usr/bin/gh auth git-credential
|
diffFilter = delta --color-only
|
||||||
|
[delta]
|
||||||
|
navigate = true # use n and N to move between diff sections
|
||||||
|
@ -84,22 +84,7 @@ if command -v keychain >/dev/null; then
|
|||||||
rbw unlock
|
rbw unlock
|
||||||
SSH_ASKPASS=get_id_rsa_pass SSH_ASKPASS_REQUIRE=force ssh-add ~/.ssh/id_rsa
|
SSH_ASKPASS=get_id_rsa_pass SSH_ASKPASS_REQUIRE=force ssh-add ~/.ssh/id_rsa
|
||||||
fi
|
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
|
### hooks/includes
|
||||||
for plugin in zsh-syntax-highlighting zsh-history-substring-search \
|
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
|
source /usr/share/zsh/plugins/$plugin/${plugin}.zsh
|
||||||
fi
|
fi
|
||||||
done
|
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 '^[[A' history-substring-search-up
|
||||||
bindkey '^[[B' history-substring-search-down
|
bindkey '^[[B' history-substring-search-down
|
||||||
bindkey -M vicmd 'k' history-substring-search-up
|
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
|
if command -v pazi &>/dev/null; then
|
||||||
eval "$(pazi init zsh)" # or 'bash'
|
eval "$(pazi init zsh)" # or 'bash'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
### End user configuration
|
|
||||||
|
Loading…
Reference in New Issue
Block a user