summaryrefslogtreecommitdiff
path: root/home/editors/nixvim.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/editors/nixvim.nix')
-rw-r--r--home/editors/nixvim.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/home/editors/nixvim.nix b/home/editors/nixvim.nix
new file mode 100644
index 0000000..48792a0
--- /dev/null
+++ b/home/editors/nixvim.nix
@@ -0,0 +1,12 @@
+{ inputs, pkgs, ... }:
+{
+ imports = [ inputs.nixvim.homeModules.nixvim ];
+ programs.nixvim = {
+ enable = true;
+ package = inputs.neovim-nightly-overlay.packages.${pkgs.stdenv.hostPlatform.system}.default;
+ extraPlugins = [ pkgs.vimPlugins.gruvbox ];
+ colorscheme = "gruvbox";
+ viAlias = true;
+ vimAlias = true;
+ };
+}