13 lines
205 B
Nix
Raw Normal View History

2025-01-03 12:30:53 +01:00
{ pkgs, ... }: {
2022-02-15 15:44:40 +01:00
programs.neovim = {
2025-01-03 12:30:53 +01:00
enable = true;
2022-02-15 15:44:40 +01:00
vimAlias = true;
viAlias = true;
2025-01-03 12:30:53 +01:00
plugins = with pkgs.unstable.vimPlugins; [
astrocore
astrolsp
astroui
];
};
2022-02-15 15:44:40 +01:00
}