diff options
Diffstat (limited to 'lua/core/overrides/modicator.lua')
-rw-r--r-- | lua/core/overrides/modicator.lua | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/lua/core/overrides/modicator.lua b/lua/core/overrides/modicator.lua index 5cc6925..dc978de 100644 --- a/lua/core/overrides/modicator.lua +++ b/lua/core/overrides/modicator.lua @@ -1,15 +1,18 @@ -require('modicator').setup { +require('modicator').setup({ show_warnings = true, highlights = { + defaults = { + bold = true, + }, modes = { - ['i'] = colors.green, - ['v'] = colors.purple, - ['V'] = colors.purple, - ['�'] = colors.purple, - ['s'] = colors.yellow, - ['S'] = colors.yellow, - ['R'] = colors.orange, - ['c'] = colors.red, - } - } -} + ['i'] = { foreground = colors.green, }, + ['v'] = { foreground = colors.purple, }, + ['V'] = { foreground = colors.purple, }, + [''] = { foreground = colors.purple, }, + ['s'] = { foreground = colors.purple, }, + ['S'] = { foreground = colors.yellow, }, + ['R'] = { foreground = colors.orange, }, + ['c'] = { foreground = colors.red, }, + }, + }, +}) |