LinuxCommandLibrary

fisher

TLDR

Install plugin

$ fisher install [jorgebucaran/nvm.fish]
copy
List installed plugins
$ fisher list
copy
Update all plugins
$ fisher update
copy
Remove plugin
$ fisher remove [jorgebucaran/nvm.fish]
copy
Update specific plugin
$ fisher update [jorgebucaran/nvm.fish]
copy

SYNOPSIS

fisher command [plugins...]

DESCRIPTION

fisher is a plugin manager for the fish shell. It installs plugins from GitHub repositories, local directories, or URLs, extending fish with themes, functions, and completions.
The manager is minimal with no configuration file required. It stores plugin references in a fish_plugins file for version control and can bulk install from this file.
fisher handles plugin dependencies and provides fast installation through parallel downloads.

PARAMETERS

COMMAND

Operation: install, remove, update, list.
PLUGINS
Plugin names (github/repo format).
install PLUGIN
Install one or more plugins.
remove PLUGIN
Uninstall plugins.
update
Update installed plugins.
list
List installed plugins.

CAVEATS

Fish shell only. Some plugins may conflict. No automatic dependency resolution.

HISTORY

fisher was created by Jorge Bucaran as a minimal, fast plugin manager for fish. It replaced the older Oh My Fish framework approach with a simpler, more direct installation method.

SEE ALSO

fish(1), omf(1)

Copied to clipboard