add chatgpt, norg and gen plugins
This commit is contained in:
parent
da79e8d990
commit
793143c6d2
7 changed files with 291 additions and 8 deletions
35
lua/custom/plugins/norg.lua
Normal file
35
lua/custom/plugins/norg.lua
Normal 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,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue