summaryrefslogtreecommitdiff
path: root/users/seth/shell/fish.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/seth/shell/fish.nix')
-rw-r--r--users/seth/shell/fish.nix38
1 files changed, 19 insertions, 19 deletions
diff --git a/users/seth/shell/fish.nix b/users/seth/shell/fish.nix
index a5f9480..f00174f 100644
--- a/users/seth/shell/fish.nix
+++ b/users/seth/shell/fish.nix
@@ -1,21 +1,21 @@
-{pkgs, ...}: {
- programs.fish = {
- enable = true;
- plugins = [
- {
- name = "autopair-fish";
- src = pkgs.fishPlugins.autopair-fish;
- }
+{ 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 = "puffer-fish";
+ src = pkgs.fetchFromGitHub {
+ owner = "nickeb96";
+ repo = "puffer-fish";
+ rev = "fd0a9c95da59512beffddb3df95e64221f894631";
+ sha256 = "sha256-aij48yQHeAKCoAD43rGhqW8X/qmEGGkg8B4jSeqjVU0=";
+ };
+ }
+ ];
+ };
}