Compare commits

...

3 Commits

Author SHA1 Message Date
Lance Vick 0a7072d93d
git config formatting 2025-02-25 18:14:23 -08:00
Lance Vick d5132ffb23
Merge remote-tracking branch 'origin/main' 2025-02-25 18:13:54 -08:00
Lance Vick 83ffe325ce
zsh history config 2025-02-25 18:10:37 -08:00
2 changed files with 23 additions and 16 deletions

View File

@ -1,22 +1,22 @@
[user]
email = lance@distrust.co
name = Lance R. Vick
signingKey = E90A401336C8AAA9
email = lance@distrust.co
name = Lance R. Vick
signingKey = E90A401336C8AAA9
[push]
default = simple
default = simple
[color]
ui = auto
ui = auto
[commit]
gpgSign = true
gpgSign = true
[merge]
gpgSign = true
gpgSign = true
[log]
decorate = true
abbrevCommit = true
decorate = true
abbrevCommit = true
[gpg]
program = qubes-gpg-client-wrapper
[init]
defaultBranch = main
defaultBranch = main
[remote "origin"]
fetch = +refs/pull/*/head:refs/remotes/origin/refs/pull/*/head
fetch = +refs/merge-requests/*/head:refs/remotes/origin/refs/merge-requests/*/head

View File

@ -5,12 +5,19 @@ if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
DEFAULT_USER="lrvick"
DISABLE_AUTO_UPDATE="true"
COMPLETION_WAITING_DOTS="true"
LC_CTYPE="en_US.UTF-8"
LC_ALL="en_US.UTF-8"
HISTFILE=~/.zsh_history
export DEFAULT_USER="lrvick"
export DISABLE_AUTO_UPDATE="true"
export COMPLETION_WAITING_DOTS="true"
export LC_CTYPE="en_US.UTF-8"
export LC_ALL="en_US.UTF-8"
export HISTFILE=~/.zsh_history
export HISTSIZE=1000000
export SAVEHIST=1000000
setopt HIST_IGNORE_ALL_DUPS
setopt HIST_SAVE_NO_DUPS
setopt HIST_REDUCE_BLANKS
setopt INC_APPEND_HISTORY_TIME
setopt EXTENDED_HISTORY
source ~/.zsh/themes/powerlevel10k/powerlevel10k.zsh-theme
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.