mirror of
https://git.aramjonghu.nl/AramJonghu/nvim.git
synced 2026-03-22 01:39:54 +01:00
9 lines
405 B
Lua
9 lines
405 B
Lua
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" },
|
|
},
|
|
})
|