diff --git a/home/shell/fish.nix b/home/shell/fish.nix new file mode 100644 index 0000000..02105ff --- /dev/null +++ b/home/shell/fish.nix @@ -0,0 +1,12 @@ +{inputs, ...}: { + xdg.configFile."fish/themes".source = "${inputs.catppuccin-fish}/themes"; + + programs.fish = { + enable = true; + + functions = { + fish_greeting = ""; + gitignore = "curl -sL https://www.gitignore.io/api/$argv"; + }; + }; +}