diff --git a/modules/home-manager/vim/config/lua/plugins/tools/neorg.lua b/modules/home-manager/vim/config/lua/plugins/tools/neorg.lua index 81a8162..5788388 100644 --- a/modules/home-manager/vim/config/lua/plugins/tools/neorg.lua +++ b/modules/home-manager/vim/config/lua/plugins/tools/neorg.lua @@ -1,39 +1,39 @@ return { - { - "nvim-neorg/neorg", - dependencies = { "luarocks.nvim" }, - lazy = false, - version = "*", - config = function() - require("neorg").setup({ - load = { - ["core.defaults"] = {}, - ["core.concealer"] = {}, - ["core.dirman"] = { - config = { - workspaces = { - dev = "~/notes", - }, - default_workspace = "dev", - index = "index.norg", - }, - }, - ["core.completion"] = { - config = { - engine = "nvim-cmp", - }, - }, - ["core.keybinds"] = {}, - ["core.ui.calendar"] = {}, - ["core.export"] = {}, - ["core.looking-glass"] = {}, - ["core.qol.toc"] = {}, - ["core.qol.todo_items"] = {}, - ["core.esupports.hop"] = {}, - ["core.esupports.indent"] = {}, - ["core.summary"] = {}, - }, - }) - end, - }, + -- { + -- "nvim-neorg/neorg", + -- dependencies = { "luarocks.nvim" }, + -- lazy = false, + -- version = "*", + -- config = function() + -- require("neorg").setup({ + -- load = { + -- ["core.defaults"] = {}, + -- ["core.concealer"] = {}, + -- ["core.dirman"] = { + -- config = { + -- workspaces = { + -- dev = "~/notes", + -- }, + -- default_workspace = "dev", + -- index = "index.norg", + -- }, + -- }, + -- ["core.completion"] = { + -- config = { + -- engine = "nvim-cmp", + -- }, + -- }, + -- ["core.keybinds"] = {}, + -- ["core.ui.calendar"] = {}, + -- ["core.export"] = {}, + -- ["core.looking-glass"] = {}, + -- ["core.qol.toc"] = {}, + -- ["core.qol.todo_items"] = {}, + -- ["core.esupports.hop"] = {}, + -- ["core.esupports.indent"] = {}, + -- ["core.summary"] = {}, + -- }, + -- }) + -- end, + -- }, }