Files
nord.nvim/lua/nord/lsp.lua
2024-01-24 14:26:58 +01:00

43 lines
2.6 KiB
Lua

local utils = require("nord.utils")
local lsp = {}
local c = require("nord.colors").palette
function lsp.highlights()
return {
-- LspReferenceText = { bg = c.fg_gutter }, -- used for highlighting "text" references
-- LspReferenceRead = { bg = c.fg_gutter }, -- used for highlighting "read" references
-- LspReferenceWrite = { bg = c.fg_gutter }, -- used for highlighting "write" references
DiagnosticOk = { fg = c.aurora.green }, -- Used as the base highlight group. Other Diagnostic highlights link to this by default
DiagnosticError = { fg = c.aurora.red }, -- Used as the base highlight group. Other Diagnostic highlights link to this by default
DiagnosticWarn = { fg = c.aurora.yellow }, -- Used as the base highlight group. Other Diagnostic highlights link to this by default
DiagnosticInfo = { fg = c.frost.ice }, -- Used as the base highlight group. Other Diagnostic highlights link to this by default
DiagnosticHint = { fg = c.frost.artic_water }, -- Used as the base highlight group. Other Diagnostic highlights link to this by default
DiagnosticVirtualTextError = { bg = utils.darken(c.aurora.red, 0.1), fg = c.aurora.red }, -- Used for "Error" diagnostic virtual text
DiagnosticVirtualTextWarn = { bg = utils.darken(c.aurora.yellow, 0.1), fg = c.aurora.yellow }, -- Used for "Warning" diagnostic virtual text
DiagnosticVirtualTextInfo = { bg = utils.darken(c.frost.ice, 0.1), fg = c.frost.ice }, -- Used for "Information" diagnostic virtual text
DiagnosticVirtualTextHint = { bg = utils.darken(c.frost.artic_water, 0.1), fg = c.frost.artic_water }, -- Used for "Hint" diagnostic virtual text
DiagnosticUnderlineError = { undercurl = true, sp = c.aurora.red }, -- Used to underline "Error" diagnostics
DiagnosticUnderlineWarn = { undercurl = true, sp = c.aurora.yellow }, -- Used to underline "Warning" diagnostics
DiagnosticUnderlineInfo = { undercurl = true, sp = c.frost.ice }, -- Used to underline "Information" diagnostics
DiagnosticUnderlineHint = { undercurl = true, sp = c.frost.artic_water }, -- Used to underline "Hint" diagnostics
LspCodeLens = { fg = c.polar_night.brightest },
-- ray-x/lsp_signature.nvim
LspSignatureActiveParameter = { bg = c.polar_night.brighter, bold = true },
-- LspTrouble
TroubleText = { fg = c.snow_storm.origin },
TroubleCount = { fg = c.frost.ice, bg = c.polar_night.brightest },
TroubleNormal = { fg = c.snow_storm.origin, bg = c.none },
TroubleIndent = { fg = c.polar_night.light, bg = c.none },
TroubleLocation = { fg = c.polar_night.light, bg = c.none },
}
end
return lsp