From 58f5f318b3eb7171d2a9bcd7e58d34ebc5ec06b0 Mon Sep 17 00:00:00 2001 From: Nigel Date: Sun, 31 Mar 2024 14:23:20 +0200 Subject: [PATCH] FEAT: Added signing key to gitconfig and adding new paths to \$PATH --- alacritty/alacritty.toml | 2 +- git/.gitconfig | 1 + zsh/.zshrc | 12 ++++++++---- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/alacritty/alacritty.toml b/alacritty/alacritty.toml index 020ba64..099b6aa 100644 --- a/alacritty/alacritty.toml +++ b/alacritty/alacritty.toml @@ -19,4 +19,4 @@ bold_italic = {family="Hack Nerd Font", style="Bold Italic" } [cursor] -style = { shape="Block", blinking="On" } \ No newline at end of file +style = { shape="Block", blinking="On" } diff --git a/git/.gitconfig b/git/.gitconfig index 61fd08b..5a81069 100644 --- a/git/.gitconfig +++ b/git/.gitconfig @@ -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 diff --git a/zsh/.zshrc b/zsh/.zshrc index eb8c0a3..f2751b1 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -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"