chore(nvim): tweak plugins

Signed-off-by: Ismo Vuorinen <ismo@ivuorinen.net>
This commit is contained in:
2025-07-24 11:41:30 +03:00
parent f577ad28a9
commit e67d4285b6
3 changed files with 42 additions and 6 deletions

View File

@@ -9,7 +9,10 @@ return {
dependencies = {
-- if you lazy-load any plugin below, make sure to add proper `module="..."` entries
'MunifTanjim/nui.nvim',
'rcarriga/nvim-notify',
{
'rcarriga/nvim-notify',
opts = { background_colour = '#000000' },
},
},
opts = {
lsp = {
@@ -29,6 +32,10 @@ return {
lsp_doc_border = false, -- add a border to hover docs and signature help
},
routes = {
{
view = 'notify',
filter = { event = 'msg_showmode' },
},
{
filter = {
event = 'msg_show',
@@ -66,13 +73,31 @@ return {
},
views = {
cmdline_popup = {
border = {
style = 'none',
padding = { 1, 2 },
position = {
row = 5,
col = '50%',
},
size = {
width = 60,
height = 'auto',
},
},
popupmenu = {
relative = 'editor',
position = {
row = 8,
col = '50%',
},
size = {
width = 60,
height = 10,
},
border = {
style = 'rounded',
padding = { 0, 1 },
},
filter_options = {},
win_options = {
winhighlight = 'NormalFloat:NormalFloat,FloatBorder:FloatBorder',
winhighlight = { Normal = 'Normal', FloatBorder = 'DiagnosticInfo' },
},
},
},

View File

@@ -17,6 +17,8 @@ return {
-- Allows extra capabilities provided by blink.cmp
'saghen/blink.cmp',
{ 'j-hui/fidget.nvim', opts = {} },
},
config = function()
local lazydev = require 'lazydev'

View File

@@ -60,7 +60,16 @@ return {
extra_groups = {
'NormalNC',
'NormalFloat',
'FloatTitle',
'FloatBorder',
'NotifyDEBUGBorder',
'NotifyERRORBorder',
'NotifyINFOBorder',
'NotifyINFOBorder73',
'NotifyINFOBorder75',
'NotifyINFOBorder101',
'NotifyTRACEBorder',
'NotifyWARNBorder',
'TelescopeBorder',
'TelescopePromptBorder',
'TelescopeResultsBorder',