summaryrefslogtreecommitdiffstats
path: root/lua/core/overrides/modicator.lua
blob: dc978de1bafe82f8e4bdc6fdb3157d7ee917b0e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require('modicator').setup({
  show_warnings = true,
  highlights = {
    defaults = {
      bold = true,
    },
    modes = {
      ['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, },
    },
  },
})