2025-01-03 12:30:53 +01:00

13 lines
205 B
Nix

{ pkgs, ... }: {
programs.neovim = {
enable = true;
vimAlias = true;
viAlias = true;
plugins = with pkgs.unstable.vimPlugins; [
astrocore
astrolsp
astroui
];
};
}