nixos-config/modules/home-manager/neovim/default.nix
2024-07-18 17:20:36 +09:00

12 lines
145 B
Nix

{ ... }:
{
programs.neovim = {
enable = true;
defaultEditor = true;
plugins = with pkgs.vimPlugins; [
lazyvim
];
};
}