13 lines
160 B
Nix
13 lines
160 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.neovim = {
|
|
enable = true;
|
|
|
|
# Plugins installed via Nix
|
|
plugins = with pkgs.vimPlugins; [
|
|
phpactor
|
|
];
|
|
};
|
|
}
|