Skip to content

Commit

Permalink
Mltui account support for git signing etc
Browse files Browse the repository at this point in the history
  • Loading branch information
karlmutch committed Jan 15, 2024
1 parent 25ff0d0 commit 4bbd11a
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 14 deletions.
15 changes: 8 additions & 7 deletions config/git/config
Original file line number Diff line number Diff line change
Expand Up @@ -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
15 changes: 8 additions & 7 deletions zsh.rc/96-aliases
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
12 changes: 12 additions & 0 deletions zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -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 <<<

0 comments on commit 4bbd11a

Please sign in to comment.