Files
nvim/lua/config/maven.lua
T
2025-09-24 22:57:58 +02:00

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" },
},
})