summaryrefslogtreecommitdiff
path: root/users/seth
diff options
context:
space:
mode:
authorseth <[email protected]>2023-02-20 16:45:26 -0500
committerseth <[email protected]>2023-02-20 16:45:26 -0500
commit9c4a04054f5c72c3c66973b0bea06d10e042947c (patch)
tree905382f99814d50775ea12df5bb191a78c05a0af /users/seth
parent3288bb384a2b52c036b6ccac76918191fa5e3350 (diff)
add catppuccin theme
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";