Compare commits

...

3 commits

Author SHA1 Message Date
c47 21391bf085
Configure gruvbox color scheme 2024-04-28 18:38:04 +02:00
c47 d0f7907aca
Add fsfe to allowed_signers
Added the fsfe-key to allowed signers and configured the conditianal to
load the config from the path when working in that directory.
2024-04-28 18:35:52 +02:00
c47 6a5d1db58b
Add support for local zshrc
Added a conditional to check for existence of .zshrc.local, which is a
local file: not in the git repository.
2024-04-28 18:33:19 +02:00
4 changed files with 14 additions and 2 deletions

View file

@ -1,2 +1,3 @@
info@nixre.net ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINKnoeiitP79Mp/DUSK86DGaH09H44U2QtDSB+J6rM6R c47@ferret
c47@nixre.net ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINKnoeiitP79Mp/DUSK86DGaH09H44U2QtDSB+J6rM6R c47@ferret
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIL08YS/7B5jaoiAkG5/lLGm0RUnHqseZijvLSmtuIsHk c47@git.fsfe.org

View file

@ -6,6 +6,8 @@
[includeIf "gitdir:~/gits/priv/"]
path = ~/gits/priv/.gitconfig
[includeIf "gitdir:~/gits/fsfe"]
path = ~/gits/fsfe/.gitconfig
[gpg "ssh"]
allowedSignersFile = ~/.config/git/allowed_signers
[log]

View file

@ -58,11 +58,16 @@ bind -T off F12 \
# TPM - tmux plugin manager
set -g @plugin 'tmux-plugins/tpm'
## srcery color scheme
set -g @plugin 'srcery-colors/srcery-tmux'
## {{{ srcery color scheme
#set -g @plugin 'srcery-colors/srcery-tmux'
set -g @srcery_tmux_patched_font '1'
run -b ~/.config/tmux/themes/srcery-tmux/srcery.tmux
# }}}
# {{{ gruvbox color scheme
set -g @plugin 'egel/tmux-gruvbox'
set -g @plugin-gruvbox 'dark'
# }}}
# Initialize TPM.. keep this line at the very bottom of this file

View file

@ -18,6 +18,10 @@ umask 0077
prompt elite2 magenta yellow
bindkey '\e.' insert-last-word
if [[ -f ${ZDOTDIR}/.zshrc.local ]]; then
source ${ZDOTDIR}/.zshrc.local
fi
if [[ -f ${ZDOTDIR}/.zaliases ]]; then
source ${ZDOTDIR}/.zaliases
fi