feat(nvim): add nvim-highlight-colors
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
bfe6c7c05c
commit
6dea770dc7
1 changed files with 13 additions and 0 deletions
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue