From 9a316e0cc9abffe2ab10e48dfa4dc5c42174a9c5 Mon Sep 17 00:00:00 2001 From: Isshi0417 Date: Fri, 19 Jul 2024 16:17:34 +0900 Subject: [PATCH] COnfigure neovim --- modules/home-manager/nixvim/default.nix | 5 ++++- modules/home-manager/nixvim/plugins/lualine.nix | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) 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"; }; }