Compare commits
No commits in common. "0a7072d93d60f3c0ab96e0a5c3ee123a0e010190" and "fb3eab0aac3b645c164c07d7c316a413a39ee9b6" have entirely different histories.
0a7072d93d
...
fb3eab0aac
|
@ -1,22 +1,22 @@
|
||||||
[user]
|
[user]
|
||||||
email = lance@distrust.co
|
email = lance@distrust.co
|
||||||
name = Lance R. Vick
|
name = Lance R. Vick
|
||||||
signingKey = E90A401336C8AAA9
|
signingKey = E90A401336C8AAA9
|
||||||
[push]
|
[push]
|
||||||
default = simple
|
default = simple
|
||||||
[color]
|
[color]
|
||||||
ui = auto
|
ui = auto
|
||||||
[commit]
|
[commit]
|
||||||
gpgSign = true
|
gpgSign = true
|
||||||
[merge]
|
[merge]
|
||||||
gpgSign = true
|
gpgSign = true
|
||||||
[log]
|
[log]
|
||||||
decorate = true
|
decorate = true
|
||||||
abbrevCommit = true
|
abbrevCommit = true
|
||||||
[gpg]
|
[gpg]
|
||||||
program = qubes-gpg-client-wrapper
|
program = qubes-gpg-client-wrapper
|
||||||
[init]
|
[init]
|
||||||
defaultBranch = main
|
defaultBranch = main
|
||||||
[remote "origin"]
|
[remote "origin"]
|
||||||
fetch = +refs/pull/*/head:refs/remotes/origin/refs/pull/*/head
|
fetch = +refs/pull/*/head:refs/remotes/origin/refs/pull/*/head
|
||||||
fetch = +refs/merge-requests/*/head:refs/remotes/origin/refs/merge-requests/*/head
|
fetch = +refs/merge-requests/*/head:refs/remotes/origin/refs/merge-requests/*/head
|
||||||
|
|
19
zsh/.zshrc
19
zsh/.zshrc
|
@ -5,19 +5,12 @@ if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]
|
||||||
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
|
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export DEFAULT_USER="lrvick"
|
DEFAULT_USER="lrvick"
|
||||||
export DISABLE_AUTO_UPDATE="true"
|
DISABLE_AUTO_UPDATE="true"
|
||||||
export COMPLETION_WAITING_DOTS="true"
|
COMPLETION_WAITING_DOTS="true"
|
||||||
export LC_CTYPE="en_US.UTF-8"
|
LC_CTYPE="en_US.UTF-8"
|
||||||
export LC_ALL="en_US.UTF-8"
|
LC_ALL="en_US.UTF-8"
|
||||||
export HISTFILE=~/.zsh_history
|
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
|
source ~/.zsh/themes/powerlevel10k/powerlevel10k.zsh-theme
|
||||||
|
|
||||||
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
||||||
|
|
Loading…
Reference in New Issue