Idk
This commit is contained in:
parent
42ab485000
commit
34f1d4593f
5 changed files with 17 additions and 14 deletions
|
|
@ -28,12 +28,18 @@ in {
|
|||
colorScript = nix-colors-lib.shellThemeFromScheme { scheme = config.colorScheme; };
|
||||
in {
|
||||
enable = true;
|
||||
plugins = with pkgs.fishPlugins; [
|
||||
{ name = "fzf-fish"; src = fzf-fish.src; }
|
||||
{ name = "grc"; src = grc.src; }
|
||||
{ name = "tide"; src = tide.src; }
|
||||
{ name = "done"; src = done.src; }
|
||||
{ name = "autopair"; src = autopair.src; }
|
||||
plugins = let
|
||||
mkPlugin = name: {
|
||||
inherit name;
|
||||
inherit (pkgs.fishPlugins.${name}) src;
|
||||
};
|
||||
in builtins.map (p: mkPlugin p) [
|
||||
"autopair"
|
||||
"done"
|
||||
"forgit"
|
||||
"fzf-fish"
|
||||
"grc"
|
||||
"tide"
|
||||
];
|
||||
interactiveShellInit = ''
|
||||
${lib.getExe pkgs.nix-your-shell} fish | source
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue