nixos/dafoe/programs/neovim.nix
2024-11-06 14:03:40 +01:00

14 lines
No EOL
245 B
Nix
Executable file

{ pkgs, ... }:
{
programs.neovim = {
enable = true;
configure = {
customRC = '''';
packages.myVimPackage = with pkgs.vimPlugins; {
start = [ vim-nix ];
};
};
viAlias = true;
vimAlias = true;
};
}