diff options
author | Squibid <me@zacharyscheiman.com> | 2023-02-15 23:11:33 -0500 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2023-02-15 23:11:33 -0500 |
commit | 70abc1f30f772757088b13d97256423385156080 (patch) | |
tree | 15d71d3973c41d8566304e5943a966e2d1e10d91 /lua/core/overrides/modicator.lua | |
parent | 74c846a7b6461c2be572c3778d67d5df682a34e9 (diff) | |
download | nvim-70abc1f30f772757088b13d97256423385156080.tar.gz nvim-70abc1f30f772757088b13d97256423385156080.tar.bz2 nvim-70abc1f30f772757088b13d97256423385156080.zip |
Major changes including better ui and more keybinds :)
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, }, + }, + }, +}) |