From 7ddac6c8f0a668ed1e331b26711d34f3712fd4a4 Mon Sep 17 00:00:00 2001 From: Lander Van den Bulcke Date: Wed, 24 Sep 2025 08:57:05 +0200 Subject: [PATCH] feat: enable csvview Signed-off-by: Lander Van den Bulcke --- config/default.nix | 1 + config/plugins/editor/csvview.nix | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 config/plugins/editor/csvview.nix diff --git a/config/default.nix b/config/default.nix index 4134c13..9b9f713 100644 --- a/config/default.nix +++ b/config/default.nix @@ -19,6 +19,7 @@ _: { ./plugins/snippets/luasnip.nix # Editor plugins and configurations + ./plugins/editor/csvview.nix ./plugins/editor/neo-tree.nix ./plugins/editor/treesitter.nix ./plugins/editor/undotree.nix diff --git a/config/plugins/editor/csvview.nix b/config/plugins/editor/csvview.nix new file mode 100644 index 0000000..fa8b98b --- /dev/null +++ b/config/plugins/editor/csvview.nix @@ -0,0 +1,7 @@ +{ + plugins = { + csvview = { + enable = true; + }; + }; +}