added neorg

This commit is contained in:
Maximilian Wagner 2024-01-02 18:57:10 +01:00
parent 5b88b204f1
commit 76d5d6b210
2 changed files with 31 additions and 0 deletions

View File

@ -78,6 +78,8 @@ lspconfig.gdscript.setup {}
lspconfig.texlab.setup {}
-- Arduino
lspconfig.arduino_language_server.setup {}
-- Markdown
lspconfig.marksman.setup {}
local load_mappings = function(section)
vim.schedule(function()

View File

@ -29,6 +29,33 @@ local default_plugins = {
end,
},
{
"nvim-neorg/neorg",
build = ":Neorg sync-parsers",
dependencies = {"nvim-lua/plenary.nvim"},
config = function()
require("neorg").setup {
load = {
["core.defaults"] = {},
["core.export"] = {
config = { extensions = "all"},
},
["core.export.markdown"] = {
config = { extensions = "all" },
},
["core.concealer"] = {},
["core.dirman"] = {
config = {
workspaces = {
forensik = "~/Documents/Forensik/",
},
},
},
},
}
end,
},
{
"jiaoshijie/undotree",
dependencies = "nvim-lua/plenary.nvim",
@ -95,7 +122,9 @@ local default_plugins = {
config = function(_, opts)
dofile(vim.g.base46_cache .. "syntax")
require("nvim-treesitter.configs").setup(opts)
require("neorg").setup {}
end,
run = ":Neorg sync-parsers",
},
-- git stuff