diff --git a/modules/home-manager/nixvim/default.nix b/modules/home-manager/nixvim/default.nix index 439b395..7bf7c75 100644 --- a/modules/home-manager/nixvim/default.nix +++ b/modules/home-manager/nixvim/default.nix @@ -10,7 +10,10 @@ defaultEditor = true; vimdiffAlias = true; - colorschemes.gruvbox.enable = true; + colorschemes.gruvbox = { + enable = true; + package = pkgs.vimPlugins.gruvbox-nvim; + }; globals = { mapleader = " "; diff --git a/modules/home-manager/nixvim/plugins/lualine.nix b/modules/home-manager/nixvim/plugins/lualine.nix index d44c35d..c1548c4 100644 --- a/modules/home-manager/nixvim/plugins/lualine.nix +++ b/modules/home-manager/nixvim/plugins/lualine.nix @@ -5,5 +5,6 @@ enable = true; globalstatus = true; iconsEnabled = true; + theme = "gruvbox_dark"; }; }