diff options
| author | Paul Buetow <paul@buetow.org> | 2025-04-20 13:29:28 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-04-20 13:29:28 +0300 |
| commit | 1358c41b43440409d1ac41805bee1839e9a5d7a1 (patch) | |
| tree | 0cf902b37a7e801731695270a049467c137bb751 | |
| parent | 8a56bc891e54746d51f416178f8c9cb9f689dd21 (diff) | |
yay
| -rw-r--r-- | dotfiles/fish/conf.d/config.fish | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/dotfiles/fish/conf.d/config.fish b/dotfiles/fish/conf.d/config.fish index a33e4a3..9116b2f 100644 --- a/dotfiles/fish/conf.d/config.fish +++ b/dotfiles/fish/conf.d/config.fish @@ -6,3 +6,11 @@ set -U fish_user_paths ~/bin ~/go/bin ~/.cargo/bin $fish_user_paths # Git stuff abbr -a gl 'git log --pretty=oneline --graph --decorate --all' abbr -a gp 'begin; git commit -a; and git pull; and git push; end' + +for dir in ~/.config/fish/conf.d.work ~/.config/fish/conf.d.local + if test -d $dir + for file in $dir/*.fish + source $file + end + end +end |
