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 {