mirror of https://github.com/LazyVim/starter
update neorg to include telescope
parent
c014ec498b
commit
12884a90bc
|
@ -1,6 +1,26 @@
|
||||||
return {
|
return {
|
||||||
"nvim-neorg/neorg",
|
"nvim-neorg/neorg",
|
||||||
lazy = false, -- Disable lazy loading as some `lazy.nvim` distributions set `lazy = true` by default
|
dependencies = {
|
||||||
version = "8.9.0", -- Pin Neorg to the latest stable release
|
"nvim-lua/plenary.nvim",
|
||||||
config = true,
|
"nvim-neorg/neorg-telescope",
|
||||||
|
},
|
||||||
|
build = ":Neorg sync-parsers",
|
||||||
|
ft = "norg",
|
||||||
|
cmd = "Neorg",
|
||||||
|
config = function()
|
||||||
|
require("neorg").setup({
|
||||||
|
load = {
|
||||||
|
["core.defaults"] = {},
|
||||||
|
["core.concealer"] = {},
|
||||||
|
["core.dirman"] = {
|
||||||
|
config = {
|
||||||
|
workspaces = {
|
||||||
|
notes = "~/notes",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
["core.integrations.telescope"] = {},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
end,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue