diff --git a/config/git/config b/config/git/config index 2af1e41..e88d7c4 100644 --- a/config/git/config +++ b/config/git/config @@ -118,17 +118,18 @@ [gpg] program = gpg -[user] - email = karlmutch@users.noreply.github.com - name = Karl Mutch - signingkey = 2D9C738EA9382A7B - [credential "ssh://github.com/"] helper = helper = !/usr/bin/gh auth git-credential [credential "https://github.com"] - helper = + helper = helper = !/usr/bin/gh auth git-credential [credential "https://gist.github.com"] - helper = + helper = helper = !/usr/bin/gh auth git-credential + +[includeIf "gitdir:~/project/src/github.com/karlmutch/"] + path = ~/project/src/github.com/karlmutch/.gitconfig + +[includeIf "gitdir:~/project/src/github.com/karlmutch-cynch/"] + path = ~/project/src/github.com/karlmutch-cynch/.gitconfig diff --git a/zsh.rc/96-aliases b/zsh.rc/96-aliases index 8ebe23c..6b80ec5 100644 --- a/zsh.rc/96-aliases +++ b/zsh.rc/96-aliases @@ -36,13 +36,14 @@ if type dfc >/dev/null 2>/dev/null; then alias df="dfc -f" fi -# exa from https://github.com/ogham/exa/releases/download/v0.3.0/exa-linux-x86_64.zip -if type exa >/dev/null 2>/dev/null; then - alias ls="exa " - alias ex="exa --sort=modified " - alias exl="exa --long -T " - alias exs="exa -ahHl --group-directories-first --sort=modified --git " - alias ex="exa -ahHl --group-directories-first --sort=modified --git " +# eza from https://github.com/eza-community/eza/releases/download/v0.17.0/eza_x86_64-unknown-linux-musl.tar.gz +if type eza >/dev/null 2>/dev/null; then + alias exa="eza" + alias ls="eza " + alias ex="eza --sort=modified " + alias exl="eza --long -T " + alias exs="eza -ahHl --group-directories-first --sort=modified --git " + alias ex="eza -ahHl --group-directories-first --sort=modified --git " fi man() { diff --git a/zshrc b/zshrc index b09576d..ede5de0 100644 --- a/zshrc +++ b/zshrc @@ -319,3 +319,15 @@ unset __conda_setup # Please make sure this block is at the end of this file. [ -s ~/.fig/fig.sh ] && source ~/.fig/fig.sh #### END FIG ENV VARIABLES #### + +# add Pulumi to the PATH +export PATH=$PATH:/home/karlmutch/.pulumi/bin + +# >>> juliaup initialize >>> + +# !! Contents within this block are managed by juliaup !! + +path=('/home/karlmutch/.juliaup/bin' $path) +export PATH + +# <<< juliaup initialize <<<