blob: 1398123be6ddff76da685c286c80a78f6268744b (
plain)
1
2
3
4
5
6
7
8
9
|
local status, colors = pcall(require, "lsp-colors")
if (not status) then return end
colors.setup {
Error = "#db4b4b",
Warning = "#e0af68",
Information = "#0db9d7",
Hint = "#10B981"
}
|