Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you dynamically reload fish config files as you would in bash?

I am looking for the equivalent of source .bashrc for Fish.

like image 581
Paul Wenzel Avatar asked Jun 17 '13 16:06

Paul Wenzel


1 Answers

Use

source ~/.config/fish/config.fish 

Or, if your fish is older than 2.1 (See fish#310)

. ~/.config/fish/config.fish 

Then it will be sourced again, so depending on what you have in there it will be reloaded. For example appending to a universal variable would add more entries.

like image 196
terje Avatar answered Oct 12 '22 16:10

terje