Add some overrides to make variable-types all the same.

This commit is contained in:
2026-01-28 12:20:05 +01:00
parent b7d4836f9f
commit c77546c8a7

View File

@@ -3,6 +3,16 @@ local colour = require('gruvbox')
colour.setup({ colour.setup({
styles = { styles = {
comments = { italic = true } comments = { italic = true }
},
overrides = {
-- Relink some highlight groups
['@variable.member'] = { link = '@variable' },
['@variable.parameter'] = { link = '@variable' },
['@parameter'] = { link = '@variable.parameter' },
['@property'] = { link = '@variable.member' },
['@string.special.symbol'] = { link = '@string' },
['@string.special.path'] = { link = '@string' },
['@string.special.url'] = { link = '@string' },
} }
}) })
vim.cmd.colorscheme('gruvbox') vim.cmd.colorscheme('gruvbox')