Closed as not planned
Description
We can customize the installation path using $fisher_path
, but Fisher doesn't help you with the boilerplate code necessary to load it during startup. It would be great if Fisher did all this work when you're using a custom $fisher_path
.
Something like this via $__fish_config/conf.d/fisher.fish
would do it:
set --query fisher_path || exit
set fish_function_path $fish_function_path[1] $fisher_path/functions $fish_function_path[2..-1]
set fish_complete_path $fish_complete_path[1] $fisher_path/completions $fish_complete_path[2..-1]
for file in $fisher_path/conf.d/*.fish
source $file
end