wrappers/fish: add prompt, zoxide, and ripgrep

This commit is contained in:
Nikodem Rabuliński 2024-02-01 22:09:29 +01:00
parent e8161c46ac
commit 427e8bde65
3 changed files with 129 additions and 3 deletions

View file

@ -19,13 +19,17 @@
config.wrappers.fish.pathAdd;
config-fish = pkgs.writeText "config.fish" ''
${path-add-lines}
source ${./config.fish}
source ${./prompt.fish}
${lib.getExe pkgs.zoxide} init fish | source
'';
in [
"-C"
"source ${config-fish}"
];
pathAdd = with pkgs; [eza bat fzf];
pathAdd = with pkgs; [eza bat fzf ripgrep];
};
}