13 lines
371 B
Lua
13 lines
371 B
Lua
-- Paper Tonic Modern - LSP Highlight Groups
|
|
-- LSP diagnostics and UI elements
|
|
|
|
local colors = require('paper-tonic-modern.colors')
|
|
|
|
return {
|
|
-- LSP groups (to be implemented in Phase 11.8)
|
|
DiagnosticError = { fg = colors.alert_strong },
|
|
DiagnosticWarn = { fg = colors.alert },
|
|
DiagnosticInfo = { fg = colors.question },
|
|
DiagnosticHint = { fg = colors.fg },
|
|
}
|