From b01ffbfe48b87c2e62dfbad4f3c939cedfeed479 Mon Sep 17 00:00:00 2001 From: Christian Segundo Date: Sun, 5 Nov 2023 12:31:47 +0100 Subject: remove neorg --- public/nvim/.nvim/lua/plugins/extra/neorg.lua | 36 --------------------------- 1 file changed, 36 deletions(-) delete mode 100644 public/nvim/.nvim/lua/plugins/extra/neorg.lua (limited to 'public/nvim/.nvim/lua/plugins/extra/neorg.lua') diff --git a/public/nvim/.nvim/lua/plugins/extra/neorg.lua b/public/nvim/.nvim/lua/plugins/extra/neorg.lua deleted file mode 100644 index 991ec40..0000000 --- a/public/nvim/.nvim/lua/plugins/extra/neorg.lua +++ /dev/null @@ -1,36 +0,0 @@ -return { - { - "nvim-neorg/neorg", - build = ":Neorg sync-parsers", - dependencies = { "nvim-lua/plenary.nvim" }, - config = function() - require("neorg").setup({ - load = { - ["core.defaults"] = {}, -- Loads default behaviour - ["core.concealer"] = {}, -- Adds pretty icons to your documents - ["core.completion"] = { config = { engine = "nvim-cmp" } }, - ["core.dirman"] = { -- Manages Neorg workspaces - config = { - workspaces = { - notes = "~/notes", - www = "~/www", - }, - default_workspace = "notes", - }, - }, - }, - }) - end, - }, - - { - "hrsh7th/nvim-cmp", - dependencies = { "nvim-neorg/neorg" }, - opts = function(_, opts) - if type(opts) == "table" then - table.insert(opts.sources, 1, { name = "neorg" }) - opts.formatting.format.menu["neorg"] = "" - end - end, - }, -} -- cgit v1.2.3