summaryrefslogtreecommitdiff
path: root/seth/shell/fish.nix
diff options
context:
space:
mode:
Diffstat (limited to 'seth/shell/fish.nix')
-rw-r--r--seth/shell/fish.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/seth/shell/fish.nix b/seth/shell/fish.nix
new file mode 100644
index 0000000..a5a48a0
--- /dev/null
+++ b/seth/shell/fish.nix
@@ -0,0 +1,34 @@
+{ config, lib, pkgs, ...}:
+
+{
+ programs.fish = {
+ enable = true;
+ plugins = [
+ {
+ name = "autopair-fish";
+ src = pkgs.fishPlugins.autopair-fish;
+ }
+
+ {
+ name = "puffer-fish";
+ src = pkgs.fetchFromGitHub {
+ owner = "nickeb96";
+ repo = "puffer-fish";
+ rev = "fd0a9c95da59512beffddb3df95e64221f894631";
+ sha256 = "sha256-aij48yQHeAKCoAD43rGhqW8X/qmEGGkg8B4jSeqjVU0=";
+ };
+ }
+
+ {
+ name = "catppuccin-fish";
+ src = pkgs.fetchFromGitHub {
+ owner = "catppuccin";
+ repo = "fish";
+ rev = "8d0b07ad927f976708a1f875eb9aacaf67876137";
+ sha256 = "sha256-/JIKRRHjaO2jC0NNPBiSaLe8pR2ASv24/LFKOJoZPjk=";
+ };
+ }
+
+ ];
+ };
+}