added neorg
This commit is contained in:
parent
7f61e85622
commit
5967684e2b
36
.config/nvim/lua/lazyvim/plugins/neorg.lua
Normal file
36
.config/nvim/lua/lazyvim/plugins/neorg.lua
Normal file
@ -0,0 +1,36 @@
|
||||
return {
|
||||
"nvim-neorg/neorg",
|
||||
cmd = "Neorg",
|
||||
event = "BufEnter *.norg",
|
||||
dependencies = "nvim-treesitter",
|
||||
build = ":Neorg sync-parsers",
|
||||
opts = {
|
||||
load = {
|
||||
["core.defaults"] = {},
|
||||
["core.norg.concealer"] = {},
|
||||
["core.norg.dirman"] = {
|
||||
config = {
|
||||
workspaces = {
|
||||
work = "~/work/notes",
|
||||
personal = "~/notes",
|
||||
},
|
||||
},
|
||||
},
|
||||
["core.norg.completion"] = {
|
||||
config = {
|
||||
engine = "nvim-cmp",
|
||||
},
|
||||
},
|
||||
["core.presenter"] = {
|
||||
config = {
|
||||
zen_mode = "zen-mode",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
-- keys = {
|
||||
-- { "<leader>nn", "<cmd>Neorg<cr>", desc = "Open Neorg" },
|
||||
-- { "<leader>nj", "<cmd>Neorg journal<cr>", desc = "Journal" },
|
||||
-- { "<leader>nw", "<cmd>Neorg workspace<cr>", desc = "Workspace" },
|
||||
-- },
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user