From dd2eabad542f088d750b2658f511f3bc43cd53bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Sun, 31 Mar 2024 16:13:09 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9E=95=20(home)=20add=20fish=20shell?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- home/shell/fish.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 home/shell/fish.nix 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"; + }; + }; +}