enabled coloured underlines for spelling diagnostics
This commit is contained in:
parent
8ad55cf999
commit
5c7a63ab8d
|
|
@ -292,6 +292,6 @@ return {
|
||||||
['@none'] = {},
|
['@none'] = {},
|
||||||
['@conceal'] = { fg = c.fg_weaker },
|
['@conceal'] = { fg = c.fg_weaker },
|
||||||
|
|
||||||
['@spell'] = {},
|
-- @spell and @nospell should not define any styling
|
||||||
['@nospell'] = {},
|
-- This allows vim.wo.spell to control spell highlighting via SpellBad/SpellCap/etc
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -60,6 +60,9 @@ vim.opt.hlsearch = true -- Highlight all search matches
|
||||||
vim.opt.iskeyword:append("$")
|
vim.opt.iskeyword:append("$")
|
||||||
vim.opt.iskeyword:append("-")
|
vim.opt.iskeyword:append("-")
|
||||||
|
|
||||||
|
-- Terminal and color support
|
||||||
|
vim.opt.termguicolors = true -- Enable 24-bit RGB color (required for colored underlines)
|
||||||
|
|
||||||
-- Visuals
|
-- Visuals
|
||||||
vim.opt.showbreak = " ↳"
|
vim.opt.showbreak = " ↳"
|
||||||
vim.opt.listchars = {
|
vim.opt.listchars = {
|
||||||
|
|
|
||||||
|
|
@ -778,3 +778,7 @@ dropdowns
|
||||||
contenteditable
|
contenteditable
|
||||||
#uer/!
|
#uer/!
|
||||||
suer/!
|
suer/!
|
||||||
|
RDV
|
||||||
|
param
|
||||||
|
int
|
||||||
|
bool
|
||||||
|
|
|
||||||
Binary file not shown.
Loading…
Reference in New Issue