1
0
Fork 0

FEAT: Added signing key to gitconfig and adding new paths to \$PATH

main
Nigel Barink 2024-03-31 14:23:20 +02:00
parent 760a821a06
commit 58f5f318b3
3 changed files with 10 additions and 5 deletions

View File

@ -19,4 +19,4 @@ bold_italic = {family="Hack Nerd Font", style="Bold Italic" }
[cursor]
style = { shape="Block", blinking="On" }
style = { shape="Block", blinking="On" }

View File

@ -1,6 +1,7 @@
[user]
email = nigelbarink@hotmail.com
name = Nigel
signingkey = C54278C495538619
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f

View File

@ -1,7 +1,8 @@
if [ "$TMUX" = "" ] && [ -z "$TMUX"]; then
tmux attach -t $(tmux display-message -p '#S') || tmux new-session
fi
# attach to an existing tmux session or create a new one if none exist
#if [ "$TMUX" = "" ] && [ -z "$TMUX"]; then
# tmux attach -t $(tmux display-message -p '#S') || tmux new-session
#fi
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
@ -152,7 +153,9 @@ export PATH=$PATH:/home/nigel/Hacking/Development/depot_tools
# Add Clang-Tools
export PATH=$PATH:$HOME/llvm/build/bin
# Add nvim
export PATH=$PATH:/usr/local/bin/nvim/bin:
export PATH=$PATH:/opt/gradle/gradle-8.7/bin
eval "$(starship init zsh)"
source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh
@ -171,3 +174,4 @@ fi
unset __conda_setup
# <<< conda initialize <<<
alias dev="cd /home/nigel/Hacking/Development"