changed a load of shit

This commit is contained in:
2026-02-22 16:30:46 +00:00
parent 4f87617051
commit d611081d65
11 changed files with 100 additions and 55 deletions

View File

@@ -8,8 +8,22 @@ return {
load = {
["core.defaults"] = {},
["core.concealer"] = {},
["core.qol.toc"] = {
config = {
close_after_use = true,
},
},
["core.integrations.treesitter"] = {},
["core.looking-glass"] = {},
["core.itero"] = {
config = {
iterables = {
"unordered_list%d",
"ordered_list%d",
"quote%d",
},
},
},
["core.completion"] = {
config = { engine = { module_name = "external.lsp-completion" } },
},
@@ -52,5 +66,15 @@ return {
})
vim.wo.foldlevel = 99
vim.wo.conceallevel = 2
vim.api.nvim_create_autocmd("Filetype", {
pattern = "norg",
callback = function()
vim.keymap.set("n", "<CR>", "<Plug>(neorg.esupports.hop.hop-link.vsplit)", { buffer = true })
vim.keymap.set("i", "<CR>", "<Plug>(neorg.itero.next-iteration)", { buffer = true })
vim.keymap.set("n", "<localleader>m", "<cmd>Neorg inject-metadata<CR>", { buffer = true })
vim.keymap.set("n", "<localleader>f", "<cmd>Telescope neorg insert_link<CR>", { buffer = true })
end,
})
end,
}