From 7430ebed8eab0364452a6cdcaa209f8a7288e44d Mon Sep 17 00:00:00 2001 From: Squibid Date: Thu, 8 May 2025 18:18:34 -0500 Subject: kitchen sink now don't support any version lower than 0.11.0 for lsp - dap now works for java and c --- lua/conf/plugins/mellow.lua | 28 ++++++++-------------------- 1 file changed, 8 insertions(+), 20 deletions(-) (limited to 'lua/conf/plugins/mellow.lua') diff --git a/lua/conf/plugins/mellow.lua b/lua/conf/plugins/mellow.lua index f0ebf82..a590cf9 100644 --- a/lua/conf/plugins/mellow.lua +++ b/lua/conf/plugins/mellow.lua @@ -13,29 +13,17 @@ return { "mellow-theme/mellow.nvim", ["NormalFloat"] = { fg = c.fg, bg = "#111111" }, ["FloatBorder"] = { link = "NormalFloat" }, - -- neorg headings, looks extra good with lukas-reineke/headlines.nvim - ["@neorg.headings.1.title"] = { fg = c.yellow, bg = "#2a211c" }, - ["@neorg.headings.1.icon"] = { link = "@neorg.headings.1.title" }, - - ["@neorg.headings.2.title"] = { fg = c.blue, bg = "#201e25" }, - ["@neorg.headings.2.icon"] = { link = "@neorg.headings.2.title" }, - - ["@neorg.headings.3.title"] = { fg = c.cyan, bg = "#2b1b20" }, - ["@neorg.headings.3.icon"] = { link = "@neorg.headings.3.title" }, - - ["@neorg.headings.4.title"] = { fg = c.green, bg = "#1d201e" }, - ["@neorg.headings.4.icon"] = { link = "@neorg.headings.4.title" }, - - ["@neorg.headings.5.title"] = { fg = c.magenta, bg = "#251a21" }, - ["@neorg.headings.5.icon"] = { link = "@neorg.headings.5.title" }, - - ["@neorg.headings.6.title"] = { fg = c.white, bg = "#212126" }, - ["@neorg.headings.6.icon"] = { link = "@neorg.headings.6.title" }, + -- make diagnostics have an undercurl + ["DiagnosticUnderlineError"] = { fg = c.red, undercurl = true }, + ["DiagnosticUnderlineWarn"] = { fg = c.yellow, undercurl = true }, + ["DiagnosticUnderlineInfo"] = { fg = c.blue, undercurl = true }, + ["DiagnosticUnderlineHint"] = { fg = c.cyan, undercurl = true }, -- make blink actually look nice - ["BlinkCmpMenu"] = { bg = c.bg_dark }, + ["BlinkCmpMenu"] = { link = "NormalFloat" }, ["BlinkCmpMenuBorder"] = { link = "BlinkCmpMenu" }, - ["BlinkCmpMenuSelection"] = { bg = c.gray02 } + ["BlinkCmpMenuSelection"] = { bg = c.gray01 }, + ["BlinkCmpLabelDeprecated"] = { link = "CmpItemAbbrDeprecated" } } end } -- cgit v1.2.1