diff --git a/nvim/dot-config/nvim/lua/plugins/neorg.lua b/nvim/dot-config/nvim/lua/plugins/neorg.lua new file mode 100644 index 0000000..8c3dcad --- /dev/null +++ b/nvim/dot-config/nvim/lua/plugins/neorg.lua @@ -0,0 +1,21 @@ +return { + "nvim-neorg/neorg", + lazy = false, + version = "*", + config = function() + require("neorg").setup({ + load = { + ["core.defaults"] = {}, + ["core.concealer"] = {}, + ["core.dirman"] = { + config = { + workspaces = { + notes = "~/notes", + }, + default_workspace = "notes", + }, + }, + }, + }) + end, +}