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.nix19
1 files changed, 10 insertions, 9 deletions
diff --git a/users/seth/shell/fish.nix b/users/seth/shell/fish.nix
index a0a3046..b017f03 100644
--- a/users/seth/shell/fish.nix
+++ b/users/seth/shell/fish.nix
@@ -1,22 +1,23 @@
-{ pkgs, ... }: {
-
+{pkgs, ...}: {
xdg.configFile."fish/themes" = {
recursive = true;
source =
pkgs.fetchFromGitHub
- {
- owner = "catppuccin";
- repo = "fish";
- rev = "b90966686068b5ebc9f80e5b90fdf8c02ee7a0ba";
- sha256 = "sha256-wQlYQyqklU/79K2OXRZXg5LvuIugK7vhHgpahpLFaOw=";
- } + "/themes";
+ {
+ owner = "catppuccin";
+ repo = "fish";
+ rev = "b90966686068b5ebc9f80e5b90fdf8c02ee7a0ba";
+ sha256 = "sha256-wQlYQyqklU/79K2OXRZXg5LvuIugK7vhHgpahpLFaOw=";
+ }
+ + "/themes";
};
programs.fish = {
enable = true;
interactiveShellInit = ''
fish_config theme choose "Catppuccin Mocha"
- '';
+ direnv hook fish | source
+ '';
plugins = [
{
name = "autopair-fish";