feat(nvim): add nvim-highlight-colors
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-09-27 12:34:31 -04:00
parent bfe6c7c05c
commit 6dea770dc7

View file

@ -78,6 +78,19 @@ in {
''; '';
} }
{
plugin = pkgs.vimPlugins.nvim-highlight-colors;
type = "lua";
config =
# lua
''
-- Ensure termguicolors is enabled if not already
vim.opt.termguicolors = true;
require('nvim-highlight-colors').setup({});
'';
}
# Deps of heirline config # Deps of heirline config
pkgs.vimPlugins.nvim-web-devicons pkgs.vimPlugins.nvim-web-devicons
{ {