mirror of
https://git.aramjonghu.nl/AramJonghu/nvim.git
synced 2026-03-22 01:39:54 +01:00
progress jdtls...
This commit is contained in:
@@ -104,3 +104,12 @@ dap.configurations.javascript = {
|
||||
cwd = "${workspaceFolder}",
|
||||
},
|
||||
}
|
||||
|
||||
dap.configurations.java = {
|
||||
{
|
||||
type = "java",
|
||||
name = "Debug",
|
||||
request = "launch",
|
||||
program = "${file}",
|
||||
},
|
||||
}
|
||||
|
||||
@@ -115,8 +115,8 @@ local severity = {
|
||||
"error",
|
||||
"warn",
|
||||
"info",
|
||||
"info", -- map both hint and info to info?
|
||||
}
|
||||
|
||||
vim.lsp.handlers["window/showMessage"] = function(err, method, params, client_id)
|
||||
vim.notify(method.message, severity[params.type])
|
||||
end
|
||||
|
||||
+15
-10
@@ -23,9 +23,6 @@ return {
|
||||
version = "*",
|
||||
config = true,
|
||||
},
|
||||
{
|
||||
"roobert/tailwindcss-colorizer-cmp.nvim",
|
||||
},
|
||||
{
|
||||
'vyfor/cord.nvim',
|
||||
build = ':Cord update',
|
||||
@@ -84,9 +81,6 @@ return {
|
||||
require("config.lualine")
|
||||
end,
|
||||
},
|
||||
{
|
||||
"shinchu/lightline-gruvbox.vim",
|
||||
},
|
||||
{
|
||||
"jiaoshijie/undotree",
|
||||
config = function()
|
||||
@@ -107,10 +101,20 @@ return {
|
||||
"tpope/vim-fugitive",
|
||||
},
|
||||
{
|
||||
"rcarriga/nvim-notify",
|
||||
config = function()
|
||||
require "config.notify"
|
||||
end,
|
||||
"folke/noice.nvim",
|
||||
opts_extend = { "routes" },
|
||||
opts = {
|
||||
routes = {
|
||||
{
|
||||
filter = {
|
||||
event = "lsp",
|
||||
kind = "progress",
|
||||
find = "jdtls",
|
||||
},
|
||||
opts = { skip = true },
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
"zbirenbaum/copilot.lua",
|
||||
@@ -172,4 +176,5 @@ return {
|
||||
{
|
||||
"notken12/base46-colors",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user