From 70abc1f30f772757088b13d97256423385156080 Mon Sep 17 00:00:00 2001 From: Squibid Date: Wed, 15 Feb 2023 23:11:33 -0500 Subject: Major changes including better ui and more keybinds :) --- lua/core/overrides/modicator.lua | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) (limited to 'lua/core/overrides/modicator.lua') 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, }, + }, + }, +}) -- cgit v1.2.1