Add plugin in zsh configuration and move linux configuration under folder

This commit is contained in:
Fabio Scotto di Santolo
2023-04-02 15:48:31 +02:00
parent 296d40d990
commit 4b9fa5e6bc
12 changed files with 260 additions and 15 deletions

View File

@@ -1,3 +1,5 @@
# Fig pre block. Keep at the top of this file.
[[ -f "$HOME/.fig/shell/profile.pre.bash" ]] && builtin source "$HOME/.fig/shell/profile.pre.bash"
# Load profiles from /etc/profile.d
if test -d $HOME/.profile.d/; then
for profile in $HOME/.profile.d/*.sh; do
@@ -5,3 +7,9 @@ if test -d $HOME/.profile.d/; then
done
unset profile
fi
<<<<<<< Updated upstream
=======
# Fig post block. Keep at the bottom of this file.
[[ -f "$HOME/.fig/shell/profile.post.bash" ]] && builtin source "$HOME/.fig/shell/profile.post.bash"
>>>>>>> Stashed changes