Skip to content

Instantly share code, notes, and snippets.

@holehan
Created November 5, 2019 10:51
Show Gist options
  • Save holehan/0919097a57a1e5b723c50ba2f620d9dd to your computer and use it in GitHub Desktop.
Save holehan/0919097a57a1e5b723c50ba2f620d9dd to your computer and use it in GitHub Desktop.
Change fisher installation path. Place it in $fish_config/conf.d/fisher.fish
set -g fisher_path $HOME/.config/fisher_install
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
builtin source $file 2> /dev/null
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment