adding neorg
This commit is contained in:
21
lua/plugins/functional/neorg.lua
Normal file
21
lua/plugins/functional/neorg.lua
Normal file
@@ -0,0 +1,21 @@
|
||||
return {
|
||||
"nvim-neorg/neorg",
|
||||
build = false,
|
||||
dependencies = { "nvim-lua/plenary.nvim", "nvim-neorg/tree-sitter-norg" },
|
||||
config = function()
|
||||
require("neorg").setup({
|
||||
load = {
|
||||
["core.defaults"] = {}, -- Loads default settings
|
||||
["core.concealer"] = {}, -- Adds pretty icons/formatting
|
||||
["core.dirman"] = { -- Manages your workspaces
|
||||
config = {
|
||||
workspaces = {
|
||||
notes = "~/notes",
|
||||
},
|
||||
default_workspace = "notes",
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
end,
|
||||
}
|
||||
Reference in New Issue
Block a user