Skip to content

Document autoinstall #756

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,18 @@ Manage functions, completions, bindings, and snippets from the command line. Ext
curl -sL https://git.io/fisher | source && fisher install jorgebucaran/fisher
```

### Automatic install

If you want to automatically install fisher when it is not present, you can add
the following at the top of your `~/.config/fish/config.fish`.
If `fish_plugins` is present, it is read first.

```fish
if not functions -q fisher && status is-interactive
curl -sL https://git.io/fisher | source && fisher update || fisher install jorgebucaran/fisher
end
```

## Quickstart

You can install, update, and remove plugins interactively with Fisher, taking advantage of Fish [tab completion](https://fishshell.com/docs/current/index.html#completion) and rich syntax highlighting.
Expand Down