From 89ee6abbaf7e8524fa5785c3737d67e90e3da4e2 Mon Sep 17 00:00:00 2001 From: punkfairie <23287005+punkfairie@users.noreply.github.com> Date: Sun, 21 Apr 2024 14:22:08 -0700 Subject: [PATCH] Update .config/fish/conf.d/20-aliases.fish --- dot_config/fish/conf.d/20-aliases.fish | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/dot_config/fish/conf.d/20-aliases.fish b/dot_config/fish/conf.d/20-aliases.fish index 2f4b58d..faeac72 100644 --- a/dot_config/fish/conf.d/20-aliases.fish +++ b/dot_config/fish/conf.d/20-aliases.fish @@ -3,7 +3,14 @@ # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # Shell aliases. -abbr -a rl --position command "source $XDG_CONFIG_HOME/fish/config.fish" +function rl -d "Reload all configs" + source "$XDG_CONFIG_HOME/fish/config.fish" + + for file in "$XDG_CONFIG_HOME/fish/conf.d/*.fish" + source $file + end +end + abbr -a c --position command clear abbr -a e --position command "$EDITOR" abbr -a v --position command "$EDITOR"