summaryrefslogtreecommitdiffstats
path: root/lua/core/overrides/modicator.lua
blob: 5cc6925bdd98708593902740bf4f1b8971027d95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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,
    }
  }
}