Compare commits

..

No commits in common. "c04978b05914f213e9b0610f3dee9710974a1cfc" and "e4f6d92e345b90128457f6496946dae4e1ed39c7" have entirely different histories.

2 changed files with 2 additions and 6 deletions

View File

@ -47,9 +47,8 @@ return {
Info = diagnostic.info,
}
for type, icon in pairs(signs) do
local hl_sign = "DiagnosticSign" .. type
local hl_text = "Diagnostic" .. type
vim.fn.sign_define(hl_sign, { text = icon, texthl = hl_sign, numhl = hl_text })
local hl = "DiagnosticSign" .. type
vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl })
end
vim.api.nvim_create_autocmd("LspAttach", {

View File

@ -40,9 +40,6 @@ return {
TodoCommentHint = { fg = palette.bright_aqua },
TodoCommentTest = { fg = palette.bright_purple },
TodoCommentDefault = { fg = palette.bright_blue },
GitSignsAdd = { link = "GruvboxGreenSign" },
GitSignsChange = { link = "GruvboxAquaSign" },
GitSignsDelete = { link = "GruvboxRedSign" },
},
})