mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-03 15:40:32 +00:00
11 lines
375 B
Fish
11 lines
375 B
Fish
# Add all functions to fish_funtion_path.
|
|
set fish_function_path $FISH/functions/ $fish_function_path
|
|
|
|
# Add all defined plugins to fish_function_path.
|
|
for plugin in $FISH_PLUGINS
|
|
set fish_function_path $FISH/plugins/$plugin $fish_function_path
|
|
end
|
|
|
|
# Add theme to fish_function_path.
|
|
set fish_function_path /Users/bpinto/.oh-my-fish/themes/$FISH_THEME $fish_function_path
|