49 lines
1.5 KiB
Lua
49 lines
1.5 KiB
Lua
local theme_colors = require("ayu.colors")
|
|
theme_colors.generate(true)
|
|
-- These are not apart of the Ayu color theme, however, I needed these
|
|
-- colors while still fitting in with the rest
|
|
local ayu_turquoise = "#5CCFE6"
|
|
local ayu_dark_blue = "#3A7BD5"
|
|
|
|
local colors = {
|
|
info = ayu_dark_blue,
|
|
hint = ayu_turquoise,
|
|
warning = theme_colors.warning,
|
|
error = theme_colors.error,
|
|
}
|
|
|
|
for _, highlight in ipairs({
|
|
{ "DiagnosticUnderlineInfo", { undercurl = true, sp = colors.info } },
|
|
{ "DiagnosticUnderlineHint", { undercurl = true, sp = colors.hint } },
|
|
{ "DiagnosticUnderlineWarn", { undercurl = true, sp = colors.warning } },
|
|
{ "DiagnosticUnderlineError", { undercurl = true, sp = colors.error } },
|
|
{ "DiagnosticInfo", { fg = colors.info } },
|
|
{ "DiagnosticHint", { fg = colors.hint } },
|
|
{ "DiagnosticWarn", { fg = colors.warning } },
|
|
{ "DiagnosticError", { fg = colors.error } },
|
|
}) do
|
|
vim.api.nvim_set_hl(0, highlight[1], highlight[2])
|
|
end
|
|
|
|
local sev = vim.diagnostic.severity
|
|
vim.diagnostic.config({
|
|
underline = true,
|
|
virtual_text = {
|
|
prefix = "●",
|
|
},
|
|
update_in_insert = true,
|
|
signs = {
|
|
text = {
|
|
[sev.ERROR] = "",
|
|
[sev.WARN] = "",
|
|
[sev.INFO] = "",
|
|
[sev.HINT] = "",
|
|
},
|
|
numhl = {
|
|
[sev.WARN] = "WarningMsg",
|
|
[sev.ERROR] = "ErrorMsg",
|
|
[sev.INFO] = "DiagnosticInfo",
|
|
[sev.HINT] = "DiagnosticHint",
|
|
},
|
|
},
|
|
})
|