Compare commits
No commits in common. "c04978b05914f213e9b0610f3dee9710974a1cfc" and "e4f6d92e345b90128457f6496946dae4e1ed39c7" have entirely different histories.
c04978b059
...
e4f6d92e34
|
@ -47,9 +47,8 @@ return {
|
||||||
Info = diagnostic.info,
|
Info = diagnostic.info,
|
||||||
}
|
}
|
||||||
for type, icon in pairs(signs) do
|
for type, icon in pairs(signs) do
|
||||||
local hl_sign = "DiagnosticSign" .. type
|
local hl = "DiagnosticSign" .. type
|
||||||
local hl_text = "Diagnostic" .. type
|
vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl })
|
||||||
vim.fn.sign_define(hl_sign, { text = icon, texthl = hl_sign, numhl = hl_text })
|
|
||||||
end
|
end
|
||||||
|
|
||||||
vim.api.nvim_create_autocmd("LspAttach", {
|
vim.api.nvim_create_autocmd("LspAttach", {
|
||||||
|
|
|
@ -40,9 +40,6 @@ return {
|
||||||
TodoCommentHint = { fg = palette.bright_aqua },
|
TodoCommentHint = { fg = palette.bright_aqua },
|
||||||
TodoCommentTest = { fg = palette.bright_purple },
|
TodoCommentTest = { fg = palette.bright_purple },
|
||||||
TodoCommentDefault = { fg = palette.bright_blue },
|
TodoCommentDefault = { fg = palette.bright_blue },
|
||||||
GitSignsAdd = { link = "GruvboxGreenSign" },
|
|
||||||
GitSignsChange = { link = "GruvboxAquaSign" },
|
|
||||||
GitSignsDelete = { link = "GruvboxRedSign" },
|
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user