add chatgpt, norg and gen plugins

This commit is contained in:
Gustavo Silva (es00679121_prosegur) 2024-01-21 20:35:43 +01:00
parent da79e8d990
commit 793143c6d2
7 changed files with 291 additions and 8 deletions

View file

@ -0,0 +1,35 @@
return {
"nvim-neorg/neorg",
build = ":Neorg sync-parsers",
dependencies = { "nvim-lua/plenary.nvim" },
config = function()
require("neorg").setup {
load = {
["core.export"] = {},
["core.export.markdown"] = {
config = {
extension = "md",
},
},
["core.defaults"] = {},
["core.concealer"] = {},
["core.dirman"] = {
config = {
workspaces = {
notes = "~/notes",
},
default_workspace = "notes",
},
},
["core.completion"] = {
config = {
engine = "nvim-cmp",
},
},
},
}
vim.wo.foldlevel = 99
vim.wo.conceallevel = 2
end,
}