summaryrefslogtreecommitdiff
path: root/common/modules/matugen/templates/matugen-neovim.nix
diff options
context:
space:
mode:
authorbee <beebeeb5k@gmail.com>2026-05-01 23:45:21 +0530
committerbee <beebeeb5k@gmail.com>2026-05-01 23:45:21 +0530
commitcd08309515bce3796777f4b20efffd379b9fabcc (patch)
tree9bc843dc067983511b31139b5c71afdd12a8e20e /common/modules/matugen/templates/matugen-neovim.nix
parent1bb49481dbec223e68df4f60fa1d425525e16cff (diff)
Homecoming
Diffstat (limited to 'common/modules/matugen/templates/matugen-neovim.nix')
-rw-r--r--common/modules/matugen/templates/matugen-neovim.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/common/modules/matugen/templates/matugen-neovim.nix b/common/modules/matugen/templates/matugen-neovim.nix
deleted file mode 100644
index dcb84a2..0000000
--- a/common/modules/matugen/templates/matugen-neovim.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- config,
- lib,
- ...
-}:
-{
- config = lib.mkIf config.beeMods.beeVim.enable {
- xdg.configFile = {
- "matugen/templates/neovim.json" = {
- text =
- # json
- ''
- {
- "source_color": "{{colors.primary.default.hex}}",
- <* if {{ is_dark_mode }} *>
- "background": "{{colors.background.default.hex}}",
- <* else *>
- "background": "{{colors.surface_container.default.hex}}",
- <* endif *>
- "harmony": 0.5,
- "mode": "{{mode}}"
- }
- '';
-
- };
- };
- };
-}