neorg g.o.d

This commit is contained in:
Lucas Barbieri 2024-01-14 18:48:53 -03:00
parent 58037ef8a2
commit e598a6d84a
2 changed files with 33 additions and 0 deletions

View File

@ -122,6 +122,7 @@ return {
},
sources = {
{ name = 'nvim_lsp' },
{ name = "neorg" },
{ name = 'luasnip' },
{ name = 'buffer' },
{ name = 'path' },

View File

@ -0,0 +1,32 @@
return {
"nvim-neorg/neorg",
build = ":Neorg sync-parsers",
-- tag = "*",
dependencies = { "nvim-lua/plenary.nvim" },
config = function()
require("neorg").setup {
load = {
["core.defaults"] = {},
["core.completion"] = {
config = {
engine = "nvim-cmp"
},
},
["core.concealer"] = {
config = {
icon_preset = "diamond",
},
},
["core.dirman"] = {
config = {
workspaces = {
notes = "~/study/notes",
},
default_workspace = "notes",
index = "001_index.norg"
},
},
},
}
end,
}