Updated config

This commit is contained in:
2025-02-26 18:59:27 +01:00
parent 2e382e73ff
commit fc0a72d4a7
4 changed files with 20 additions and 4 deletions

View File

@@ -1,17 +1,18 @@
--- @type LazyPluginSpec
return {
"j-hui/fidget.nvim",
tag = "legacy",
event = "LspAttach",
config = function()
vim.api.nvim_set_hl(0, "FidgetTitle", { link = "DiagnosticText" })
vim.api.nvim_set_hl(0, "FidgetTask", { link = "DiagnosticInfo" })
require("fidget").setup({
notification = {
window = {
blend = 0,
winblend = 0,
relative = "editor",
},
},
})
end,
}

View File

@@ -56,6 +56,9 @@ return {
},
},
lsp = {
progress = {
enabled = false,
},
override = {
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
["vim.lsp.util.stylize_markdown"] = true,

View File

@@ -1,6 +1,7 @@
--- @type LazyPluginSpec
return {
"rcarriga/nvim-notify",
enabled = false,
config = function()
local notify = require("notify")

View File

@@ -0,0 +1,11 @@
return {
"folke/snacks.nvim",
config = function()
local snacks = require("snacks")
snacks.setup({
notifier = {},
scroll = {},
})
end,
}