Add support for 'mawkler/modicator.nvim'

This commit is contained in:
Fernando Schauenburg 2023-08-18 22:30:06 +02:00
parent 2dab943416
commit 1459a1bcb2
2 changed files with 11 additions and 0 deletions

View file

@ -60,4 +60,5 @@ None. This is supposed to be simple, remember?
- [vim-better-whitespace](https://github.com/ntpeters/vim-better-whitespace) - [vim-better-whitespace](https://github.com/ntpeters/vim-better-whitespace)
- [vim-fugitive](https://github.com/tpope/vim-fugitive) - [vim-fugitive](https://github.com/tpope/vim-fugitive)
- [virt-column.nvim](https://github.com/lukas-reineke/virt-column.nvim) - [virt-column.nvim](https://github.com/lukas-reineke/virt-column.nvim)
- [modicator.nvim](https://github.com/mawkler/modicator.nvim)

View file

@ -551,6 +551,16 @@ M.highlights = function()
CmpItemKindUnit = { link = 'CmpItemKindKeyword' }, CmpItemKindUnit = { link = 'CmpItemKindKeyword' },
}, },
-- 'mawkler/modicator.nvim'
modicator = {
NormalMode = { fg = C.br_blue },
InsertMode = { fg = C.br_green, italic = true },
VisualMode = { fg = C.br_purple, italic = true},
SelectMode = { fg = C.br_purple, bold = true },
CommandMode = { fg = C.br_yellow },
ReplaceMode = { fg = C.br_red, bold = true, italic = true },
},
} }
end end