mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-25 14:01:03 +00:00
update neorg to include telescope
This commit is contained in:
parent
c014ec498b
commit
12884a90bc
1 changed files with 23 additions and 3 deletions
|
|
@ -1,6 +1,26 @@
|
|||
return {
|
||||
"nvim-neorg/neorg",
|
||||
lazy = false, -- Disable lazy loading as some `lazy.nvim` distributions set `lazy = true` by default
|
||||
version = "8.9.0", -- Pin Neorg to the latest stable release
|
||||
config = true,
|
||||
dependencies = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"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…
Add table
Reference in a new issue