summaryrefslogtreecommitdiff
path: root/users/seth
diff options
context:
space:
mode:
Diffstat (limited to 'users/seth')
-rw-r--r--users/seth/shell/fish.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/users/seth/shell/fish.nix b/users/seth/shell/fish.nix
index f00174f..a0a3046 100644
--- a/users/seth/shell/fish.nix
+++ b/users/seth/shell/fish.nix
@@ -1,6 +1,22 @@
{ pkgs, ... }: {
+
+ xdg.configFile."fish/themes" = {
+ recursive = true;
+ source =
+ pkgs.fetchFromGitHub
+ {
+ owner = "catppuccin";
+ repo = "fish";
+ rev = "b90966686068b5ebc9f80e5b90fdf8c02ee7a0ba";
+ sha256 = "sha256-wQlYQyqklU/79K2OXRZXg5LvuIugK7vhHgpahpLFaOw=";
+ } + "/themes";
+ };
+
programs.fish = {
enable = true;
+ interactiveShellInit = ''
+ fish_config theme choose "Catppuccin Mocha"
+ '';
plugins = [
{
name = "autopair-fish";