fish_functions/reload_fish_config.fish
- 291 bytes
- View raw
1function reload_fish_config --description "Load the latest version of my fish config"
2 source ~/.config/fish/config.fish
4 for file in ~/.config/fish/conf.d/*.fish
5 source "$file"
6 end
8 for file in ~/repos/scripts/fish_functions/*.fish
9 source "$file"
10 end
11end