summaryrefslogtreecommitdiff
path: root/common/modules/matugen/templates/matugen-nvim.nix
diff options
context:
space:
mode:
authorbee <beebeeb5k@gmail.com>2026-05-05 22:47:01 +0530
committerbee <beebeeb5k@gmail.com>2026-05-05 22:47:01 +0530
commitd550f99d5d1b89569ee512c2716e98e7dc3d81d3 (patch)
treec4bf1dc2b80a4cf1a17d690f5e568c2bf1154fad /common/modules/matugen/templates/matugen-nvim.nix
parentcd08309515bce3796777f4b20efffd379b9fabcc (diff)
important stuff
Diffstat (limited to 'common/modules/matugen/templates/matugen-nvim.nix')
-rw-r--r--common/modules/matugen/templates/matugen-nvim.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/common/modules/matugen/templates/matugen-nvim.nix b/common/modules/matugen/templates/matugen-nvim.nix
new file mode 100644
index 0000000..0b7b421
--- /dev/null
+++ b/common/modules/matugen/templates/matugen-nvim.nix
@@ -0,0 +1,18 @@
+{
+ config,
+ lib,
+ ...
+}:
+{
+ xdg.configFile = {
+ "matugen/templates/neovim.json" = {
+ text = ''
+ {
+ "mode": "{{mode}}",
+ "source_color":"{{colors.primary.default.hex}}",
+ "background":"{{colors.background.default.hex}}"
+ }
+ '';
+ };
+ };
+}