13 lines
205 B
Nix
13 lines
205 B
Nix
{ pkgs, ... }: {
|
|
programs.neovim = {
|
|
enable = true;
|
|
vimAlias = true;
|
|
viAlias = true;
|
|
plugins = with pkgs.unstable.vimPlugins; [
|
|
astrocore
|
|
astrolsp
|
|
astroui
|
|
];
|
|
};
|
|
}
|