removed maveon, added neorg

This commit is contained in:
Aram Markarov
2025-11-29 19:47:04 +01:00
parent 356baa89f9
commit 31b64b318d
3 changed files with 14 additions and 16 deletions
-8
View File
@@ -1,8 +0,0 @@
require('maven').setup({
executable = "mvn", -- `mvn` should be in your `PATH`, or the path to the maven exectable, for example `./mvnw`
cwd = nil, -- work directory, default to `vim.fn.getcwd()`
settings = nil, -- specify the settings file or use the default settings
commands = { -- add custom goals to the command list
{ cmd = { "clean", "compile" }, desc = "clean then compile" },
},
})
+5
View File
@@ -0,0 +1,5 @@
require("neorg").setup({
load = {
["core.defaults"] = {},
}
})
+9 -8
View File
@@ -1,4 +1,13 @@
return { return {
{
"nvim-neorg/neorg",
lazy = false,
version = "*",
config = true,
config = function()
require("config.neorg")
end,
},
{ {
"neovim/nvim-lspconfig", "neovim/nvim-lspconfig",
dependencies = { dependencies = {
@@ -114,12 +123,4 @@ return {
require("config.dap") require("config.dap")
end, end,
}, },
{
"eatgrass/maven.nvim",
cmd = { "Maven", "MavenExec" },
dependencies = "nvim-lua/plenary.nvim",
config = function()
require("config.maven")
end
},
} }