we did something

This commit is contained in:
Aram Markarov
2025-09-24 22:57:58 +02:00
parent 0712f38bf6
commit 2ab8372f82
4 changed files with 24 additions and 68 deletions
+8
View File
@@ -0,0 +1,8 @@
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" },
},
})
+1 -1
View File
@@ -19,7 +19,7 @@ vim.opt.isfname:append("@-@")
vim.opt.updatetime = 50
vim.opt.colorcolumn = "80"
vim.opt.textwidth = 80
vim.opt.formatoptions = "tcrqnj"
vim.opt.formatoptions = "rqnj"
vim.o.sessionoptions = "blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal,localoptions"
vim.o.laststatus = 3
vim.o.clipboard = "unnamedplus"
+8 -59
View File
@@ -106,22 +106,6 @@ return {
require("config.colorizer")
end,
},
{
"folke/noice.nvim",
opts_extend = { "routes" },
opts = {
routes = {
{
filter = {
event = "lsp",
kind = "progress",
find = "jdtls",
},
opts = { skip = true },
},
},
},
},
-- {
-- "zbirenbaum/copilot.lua",
-- lazy = true,
@@ -137,50 +121,15 @@ return {
require("config.dap")
end,
},
{
"folke/snacks.nvim",
priority = 1000,
lazy = false,
-----@type snacks.Config
opts = {
bigfile = { enabled = true },
dashboard = { enabled = true },
explorer = { enabled = true },
indent = {
enabled = true,
scope = {
enabled = false,
underline = true,
animate = {
enabled = true,
fps = 144,
easing = "inExpo",
duration = 20,
},
},
chunk = {
enabled = true,
char = {
corner_top = "",
corner_bottom = "",
vertical = "",
arrow = "",
},
},
},
input = { enabled = true },
picker = { enabled = true },
notifier = { enabled = true },
quickfile = { enabled = true },
scope = { enabled = true },
scroll = { enabled = false },
statuscolumn = { enabled = true },
words = { enabled = true },
},
},
{
"notken12/base46-colors",
},
{
"eatgrass/maven.nvim",
cmd = { "Maven", "MavenExec" },
dependencies = "nvim-lua/plenary.nvim",
config = function()
require("config.maven")
end
},
}