1
0
Fork 0
This commit is contained in:
zymon 2024-09-01 15:48:19 +02:00
parent c475fc5c21
commit 168f7be5be
2 changed files with 41 additions and 0 deletions

View file

@ -26,6 +26,7 @@ return {
{ name = "path" },
{ name = "nvim_lsp" },
{ name = 'nvim_lsp_signature_help' },
{ name = "neorg" },
}),
window = {
completion = cmp.config.window.bordered(),

View file

@ -0,0 +1,40 @@
return {
"https://github.com/nvim-neorg/neorg",
lazy = true,
ft = "norg",
cmd = "Neorg",
dependencies = {
"https://github.com/nvim-lua/plenary.nvim",
"https://github.com/nvim-neorg/neorg-telescope",
},
opts = {
load = {
["core.defaults"] = {},
["core.concealer"] = {
config = {
icon_preset = "diamond",
},
},
["core.integrations.telescope"] = {},
["core.keybinds"] = {
config = {
default_keybinds = true,
},
},
["core.completion"] = {
config = {
engine = "nvim-cmp",
},
},
["core.dirman"] = {
config = {
workspaces = {
notatki = "~/n",
},
default_workspace = "notatki",
index = "index.norg",
},
},
}
},
}