mirror of
https://git.aramjonghu.nl/AramJonghu/nvim.git
synced 2026-03-22 01:39:54 +01:00
removed maveon, added neorg
This commit is contained in:
@@ -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" },
|
||||
},
|
||||
})
|
||||
@@ -0,0 +1,5 @@
|
||||
require("neorg").setup({
|
||||
load = {
|
||||
["core.defaults"] = {},
|
||||
}
|
||||
})
|
||||
@@ -1,4 +1,13 @@
|
||||
return {
|
||||
{
|
||||
"nvim-neorg/neorg",
|
||||
lazy = false,
|
||||
version = "*",
|
||||
config = true,
|
||||
config = function()
|
||||
require("config.neorg")
|
||||
end,
|
||||
},
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
dependencies = {
|
||||
@@ -114,12 +123,4 @@ return {
|
||||
require("config.dap")
|
||||
end,
|
||||
},
|
||||
{
|
||||
"eatgrass/maven.nvim",
|
||||
cmd = { "Maven", "MavenExec" },
|
||||
dependencies = "nvim-lua/plenary.nvim",
|
||||
config = function()
|
||||
require("config.maven")
|
||||
end
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user