fish
This commit is contained in:
parent
12c038249c
commit
7fb3e81be7
5 changed files with 33 additions and 5 deletions
|
|
@ -18,6 +18,8 @@
|
|||
./input.nix
|
||||
./starship.nix
|
||||
|
||||
./fish.nix
|
||||
|
||||
./common.nix
|
||||
./direnv.nix
|
||||
# ./firefox.nix
|
||||
|
|
|
|||
22
home/lilith/fish.nix
Normal file
22
home/lilith/fish.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [ grc ];
|
||||
programs.fish = {
|
||||
enable = true;
|
||||
interactiveShellInit = ''
|
||||
set fish_greeting # Disable greeting
|
||||
'';
|
||||
plugins =
|
||||
let
|
||||
mkPlugin = plugin: {
|
||||
name = plugin;
|
||||
src = pkgs.fishPlugins."${plugin}".src;
|
||||
};
|
||||
in
|
||||
map mkPlugin [
|
||||
"puffer"
|
||||
"grc"
|
||||
"fzf-fish"
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue