nix-flakes/modules/home/devtool/neovim.nix
2026-09-14 12:23:38 +09:00

15 lines
172 B
Nix

{
pkgs,
config,
lib,
...
}:
{
programs.neovim = {
enable = true;
withRuby = true;
withPython3 = true;
viAlias = true;
vimAlias = true;
};
}