Fish: Difference between revisions
imported>Onny Cleanup |
imported>Onny Add notes on installing plugins system wide |
||
Line 23: | Line 23: | ||
== Configuration == | == Configuration == | ||
=== System wide === | |||
To enable fish plugins, add your prefered plugins to `environment.systemPackages` to enable them: | |||
<syntaxhighlight lang="nix"> | |||
environment.systemPackages = with pkgs; [ | |||
fishPlugins.done | |||
fishPlugins.fzf-fish | |||
fishPlugins.forgit | |||
fishPlugins.hydro | |||
fzf | |||
fishPlugins.grc | |||
grc | |||
]; | |||
programs.fish.enable = true; | |||
</syntaxhighlight> | |||
=== Home Manager === | |||
An example configuration in Home Manager for adding plugins and changing options could look like this | An example configuration in Home Manager for adding plugins and changing options could look like this |