Install neovim

This commit is contained in:
Isshi0417 2024-07-18 17:20:36 +09:00
parent 1d53d701a9
commit bd17541724
2 changed files with 13 additions and 0 deletions

View File

@ -6,6 +6,7 @@
./qt/retro
./terminal
./oh-my-posh
./neovim
];
# Allow Unfree

View File

@ -0,0 +1,12 @@
{ ... }:
{
programs.neovim = {
enable = true;
defaultEditor = true;
plugins = with pkgs.vimPlugins; [
lazyvim
];
};
}