Major changes including better ui and more keybinds :)

This commit is contained in:
2023-02-15 23:11:33 -05:00
parent 52ba49ec82
commit 8c8512386b
24 changed files with 664 additions and 118 deletions

View File

@ -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,
['<EFBFBD>'] = 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, },
},
},
})