diff options
author | Squibid <me@zacharyscheiman.com> | 2022-12-30 12:44:28 -0500 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2022-12-30 12:44:28 -0500 |
commit | 4ec198e9de4c29378a9307f739770e71282d5d45 (patch) | |
tree | 332bed8d9fa2c91e8469faf74ac50ccfaa631c4b /lua/core/overrides/modicator.lua | |
parent | eaa58ff6184e6b0bb3abf03d2314864795a13fbd (diff) | |
download | nvim-4ec198e9de4c29378a9307f739770e71282d5d45.tar.gz nvim-4ec198e9de4c29378a9307f739770e71282d5d45.tar.bz2 nvim-4ec198e9de4c29378a9307f739770e71282d5d45.zip |
fix config not working in other dirs. whoops
Diffstat (limited to 'lua/core/overrides/modicator.lua')
-rw-r--r-- | lua/core/overrides/modicator.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lua/core/overrides/modicator.lua b/lua/core/overrides/modicator.lua new file mode 100644 index 0000000..5cc6925 --- /dev/null +++ b/lua/core/overrides/modicator.lua @@ -0,0 +1,15 @@ +require('modicator').setup { + show_warnings = true, + highlights = { + modes = { + ['i'] = colors.green, + ['v'] = colors.purple, + ['V'] = colors.purple, + ['�'] = colors.purple, + ['s'] = colors.yellow, + ['S'] = colors.yellow, + ['R'] = colors.orange, + ['c'] = colors.red, + } + } +} |