From df580aaf4d427da607654972db63f7a78d7250db Mon Sep 17 00:00:00 2001 From: Soispha Date: Sun, 27 Aug 2023 20:53:32 +0200 Subject: Feat(hm/conf/nvim/plugins/neorg): Init --- hm/soispha/conf/nvim/plugins/nvim-cmp/default.nix | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) (limited to 'hm/soispha/conf/nvim/plugins/nvim-cmp/default.nix') diff --git a/hm/soispha/conf/nvim/plugins/nvim-cmp/default.nix b/hm/soispha/conf/nvim/plugins/nvim-cmp/default.nix index 2fd35272..ceb09182 100644 --- a/hm/soispha/conf/nvim/plugins/nvim-cmp/default.nix +++ b/hm/soispha/conf/nvim/plugins/nvim-cmp/default.nix @@ -1,7 +1,12 @@ -{...}: { - programs.nixvim.plugins.nvim-cmp = { +{config, ...}: { + programs.nixvim.plugins.nvim-cmp = let + neorg_source = + if config.programs.nixvim.plugins.neorg.modules."core.completion".config.engine == "nvim-cmp" + then [{name = "neorg";}] + else []; + in { /* - TODO:; integrate this: + TODO: integrate this: ```lua enabled = { function() @@ -39,9 +44,11 @@ snippet.expand = "luasnip"; - sources = [ - {name = "nvim_lsp";} - {name = "luasnip";} - ]; + sources = + [ + {name = "nvim_lsp";} + {name = "luasnip";} + ] + ++ neorg_source; }; } -- cgit 1.4.1