1
0
Fork 0
dotfiles/.config/zsh/.zshrc

14 lines
262 B
Bash
Raw Normal View History

2024-01-29 11:30:00 +01:00
#!/bin/zsh
2023-04-11 10:30:27 +02:00
2024-06-10 01:45:17 +02:00
for f in \
"$ZDOTDIR"/configs/* \
2024-06-10 18:02:25 +02:00
"$ZDOTDIR"/plugins/*/*.plugin.zsh \
2024-06-10 01:45:17 +02:00
/usr/share/zsh/plugins/*/*.plugin.zsh \
/usr/share/fzf/*.zsh
do
source $f
done
2023-03-28 09:42:51 +02:00
2024-03-13 17:28:46 +01:00
export GPG_TTY="$(tty)"
2024-02-04 13:04:06 +01:00
gpg-connect-agent updatestartuptty /bye >/dev/null 2>&1