From 6dea770dc7c4d03dd1d0239bda9ff2cd58da5ddf Mon Sep 17 00:00:00 2001 From: matt1432 Date: Fri, 27 Sep 2024 12:34:31 -0400 Subject: [PATCH] feat(nvim): add nvim-highlight-colors --- common/home/neovim/theme.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/common/home/neovim/theme.nix b/common/home/neovim/theme.nix index 70c5e8f5..b119190a 100644 --- a/common/home/neovim/theme.nix +++ b/common/home/neovim/theme.nix @@ -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 pkgs.vimPlugins.nvim-web-devicons {