aboutsummaryrefslogtreecommitdiffstats
path: root/hm/soispha/conf/nvim/plgs/flatten-nvim/default.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--hm/soispha/conf/nvim/plgs/flatten-nvim/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/hm/soispha/conf/nvim/plgs/flatten-nvim/default.nix b/hm/soispha/conf/nvim/plgs/flatten-nvim/default.nix
new file mode 100644
index 00000000..4fc009ae
--- /dev/null
+++ b/hm/soispha/conf/nvim/plgs/flatten-nvim/default.nix
@@ -0,0 +1,20 @@
+{
+ pkgs,
+ lib,
+ ...
+}: {
+ programs.nixvim = {
+ # TODO: package flatten-nvim though a module
+
+ extraConfigLuaPre = ''
+ ${lib.strings.fileContents ./lua/flatten-nvim.lua}
+ if os.getenv("NVIM") ~= nil then
+ -- Avoid loading plugins because the host will take control of the instance anyways
+ return
+ end
+ '';
+ extraPlugins = [
+ pkgs.vimExtraPlugins.flatten-nvim
+ ];
+ };
+}