From bd17541724906f390fdecc04b0b162e46548f5c9 Mon Sep 17 00:00:00 2001 From: Isshi0417 Date: Thu, 18 Jul 2024 17:20:36 +0900 Subject: [PATCH] Install neovim --- modules/home-manager/default.nix | 1 + modules/home-manager/neovim/default.nix | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 modules/home-manager/neovim/default.nix diff --git a/modules/home-manager/default.nix b/modules/home-manager/default.nix index 7a188e5..9b52aa4 100644 --- a/modules/home-manager/default.nix +++ b/modules/home-manager/default.nix @@ -6,6 +6,7 @@ ./qt/retro ./terminal ./oh-my-posh + ./neovim ]; # Allow Unfree diff --git a/modules/home-manager/neovim/default.nix b/modules/home-manager/neovim/default.nix new file mode 100644 index 0000000..4257e2d --- /dev/null +++ b/modules/home-manager/neovim/default.nix @@ -0,0 +1,12 @@ +{ ... }: + +{ + programs.neovim = { + enable = true; + defaultEditor = true; + + plugins = with pkgs.vimPlugins; [ + lazyvim + ]; + }; +} \ No newline at end of file