Compare commits
2 Commits
e4f6d92e34
...
c04978b059
Author | SHA1 | Date | |
---|---|---|---|
c04978b059 | |||
9d2dc5a389 |
|
@ -47,8 +47,9 @@ return {
|
|||
Info = diagnostic.info,
|
||||
}
|
||||
for type, icon in pairs(signs) do
|
||||
local hl = "DiagnosticSign" .. type
|
||||
vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl })
|
||||
local hl_sign = "DiagnosticSign" .. type
|
||||
local hl_text = "Diagnostic" .. type
|
||||
vim.fn.sign_define(hl_sign, { text = icon, texthl = hl_sign, numhl = hl_text })
|
||||
end
|
||||
|
||||
vim.api.nvim_create_autocmd("LspAttach", {
|
||||
|
|
|
@ -40,6 +40,9 @@ 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" },
|
||||
},
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user