mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-09 07:10:27 +00:00
19 lines
381 B
Fish
19 lines
381 B
Fish
|
# Reset Fisherman's configuration state.
|
||
|
|
||
|
set -g fisher_config $argv
|
||
|
source $fisher_home/config.fish
|
||
|
|
||
|
set -U fisher_prompt
|
||
|
set -g plugins $DIRNAME/fixtures/plugins
|
||
|
set -g fisher_index file://$plugins/index
|
||
|
|
||
|
__fisher_index_update
|
||
|
|
||
|
function -S __fisher_url_clone -a url path
|
||
|
cp -rf (echo $url | sed "s|https://github.com/|$plugins/|") $path
|
||
|
end
|
||
|
|
||
|
function wait
|
||
|
eval $argv
|
||
|
end
|