lots of polishing and command mode works again

This commit is contained in:
2026-02-14 13:59:36 +00:00
parent ea9e351c83
commit 83e835bf41
7 changed files with 25 additions and 14 deletions

View File

@@ -0,0 +1,33 @@
return {
"nvim-neorg/neorg",
lazy = false,
version = "*",
dependencies = { { "nvim-lua/plenary.nvim" }, { "nvim-neorg/neorg-telescope" } },
config = function()
require("neorg").setup({
load = {
["core.defaults"] = {},
["core.concealer"] = {},
["core.dirman"] = {
config = {
workspaces = {
notes = "~/Notes",
},
default_workspace = "notes",
},
},
["core.integrations.telescope"] = {
config = {
insert_file_link = {
-- Whether to show the title preview in telescope. Affects performance with a large
-- number of files.
show_title_preview = true,
},
},
},
},
})
vim.wo.foldlevel = 99
vim.wo.conceallevel = 2
end,
}