neorg
This commit is contained in:
parent
c475fc5c21
commit
168f7be5be
2 changed files with 41 additions and 0 deletions
|
@ -26,6 +26,7 @@ return {
|
||||||
{ name = "path" },
|
{ name = "path" },
|
||||||
{ name = "nvim_lsp" },
|
{ name = "nvim_lsp" },
|
||||||
{ name = 'nvim_lsp_signature_help' },
|
{ name = 'nvim_lsp_signature_help' },
|
||||||
|
{ name = "neorg" },
|
||||||
}),
|
}),
|
||||||
window = {
|
window = {
|
||||||
completion = cmp.config.window.bordered(),
|
completion = cmp.config.window.bordered(),
|
||||||
|
|
40
lua/znvim/plugins/neorg.lua
Normal file
40
lua/znvim/plugins/neorg.lua
Normal 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",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
Loading…
Reference in a new issue