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

20 lines
605 B
Bash
Raw Normal View History

2024-01-29 11:30:00 +01:00
#!/bin/zsh
2023-03-29 16:15:06 +02:00
source $ZDOTDIR/configs/vars
2023-11-23 20:21:17 +01:00
source $ZDOTDIR/configs/widgets
2023-03-29 16:15:06 +02:00
source $ZDOTDIR/configs/setup
source $ZDOTDIR/configs/bindings
source $ZDOTDIR/configs/aliases
2023-07-18 15:25:51 +02:00
[ -r $ZDOTDIR/configs/host-setup ] && source $ZDOTDIR/configs/host-setup
2023-04-11 10:30:27 +02:00
source $ZDOTDIR/plugins/fzf/bindings.zsh
source $ZDOTDIR/plugins/fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh
2024-01-02 23:31:06 +01:00
[ -r /usr/bin/virtualenvwrapper_lazy.sh ] && source /usr/bin/virtualenvwrapper_lazy.sh
2023-03-28 09:42:51 +02:00
2023-03-29 18:23:08 +02:00
for f in $ZDOTDIR/configs/autogenerated/*; do
source $f
done
2023-03-28 09:42:51 +02:00
2023-06-01 12:38:34 +02:00
export GPG_TTY=$(tty)
2024-02-04 13:04:06 +01:00
gpg-connect-agent updatestartuptty /bye >/dev/null 2>&1
2023-12-11 19:51:04 +01:00
clear