added neorg
This commit is contained in:
parent
5b88b204f1
commit
76d5d6b210
@ -78,6 +78,8 @@ lspconfig.gdscript.setup {}
|
|||||||
lspconfig.texlab.setup {}
|
lspconfig.texlab.setup {}
|
||||||
-- Arduino
|
-- Arduino
|
||||||
lspconfig.arduino_language_server.setup {}
|
lspconfig.arduino_language_server.setup {}
|
||||||
|
-- Markdown
|
||||||
|
lspconfig.marksman.setup {}
|
||||||
|
|
||||||
local load_mappings = function(section)
|
local load_mappings = function(section)
|
||||||
vim.schedule(function()
|
vim.schedule(function()
|
||||||
|
@ -29,6 +29,33 @@ local default_plugins = {
|
|||||||
end,
|
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",
|
"jiaoshijie/undotree",
|
||||||
dependencies = "nvim-lua/plenary.nvim",
|
dependencies = "nvim-lua/plenary.nvim",
|
||||||
@ -95,7 +122,9 @@ local default_plugins = {
|
|||||||
config = function(_, opts)
|
config = function(_, opts)
|
||||||
dofile(vim.g.base46_cache .. "syntax")
|
dofile(vim.g.base46_cache .. "syntax")
|
||||||
require("nvim-treesitter.configs").setup(opts)
|
require("nvim-treesitter.configs").setup(opts)
|
||||||
|
require("neorg").setup {}
|
||||||
end,
|
end,
|
||||||
|
run = ":Neorg sync-parsers",
|
||||||
},
|
},
|
||||||
|
|
||||||
-- git stuff
|
-- git stuff
|
||||||
|
Loading…
x
Reference in New Issue
Block a user