From 2799ebe7d11d2a8e2d44c61c44d54fede1163d26 Mon Sep 17 00:00:00 2001 From: Lichthagel Date: Fri, 19 Apr 2024 13:55:01 +0200 Subject: [PATCH] feat(home-manager): add support for skim --- modules/home-manager/skim.nix | 19 +++++++++++++++++++ test.nix | 1 + 2 files changed, 20 insertions(+) create mode 100644 modules/home-manager/skim.nix diff --git a/modules/home-manager/skim.nix b/modules/home-manager/skim.nix new file mode 100644 index 00000000..87d88895 --- /dev/null +++ b/modules/home-manager/skim.nix @@ -0,0 +1,19 @@ +{ config +, lib +, sources +, ... +}: +let + cfg = config.programs.skim.catppuccin; + enable = cfg.enable && config.programs.skim.enable; + palette = (lib.importJSON "${sources.palette}/palette.json").${cfg.flavour}.colors; +in +{ + options.programs.skim.catppuccin = lib.ctp.mkCatppuccinOpt "skim"; + + config.programs.skim = lib.mkIf enable { + defaultOptions = [ + "--color=fg:${palette.text.hex},bg:${palette.base.hex},matched:${palette.surface0.hex},matched_bg:${palette.flamingo.hex},current:${palette.text.hex},current_bg:${palette.surface1.hex},current_match:${palette.base.hex},current_match_bg:${palette.rosewater.hex},spinner:${palette.green.hex},info:${palette.mauve.hex},prompt:${palette.blue.hex},cursor:${palette.red.hex},selected:${palette.maroon.hex},header:${palette.teal.hex},border:${palette.overlay0.hex}" + ]; + }; +} diff --git a/test.nix b/test.nix index 54695f64..f0b51bbd 100644 --- a/test.nix +++ b/test.nix @@ -82,6 +82,7 @@ in neovim = ctpEnable; rio = ctpEnable; rofi = ctpEnable; + skim = ctpEnable; starship = ctpEnable; swaylock = ctpEnable; tmux = ctpEnable;