2.home-manager/tests/modules/programs/neovim/extra-lua-empty-plugin.nix
Austin Horstman 0b435f768e tests/neovim: add default/empty tests
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2026-01-22 19:39:50 -06:00

19 lines
305 B
Nix

{ pkgs, ... }:
{
imports = [ ./stubs.nix ];
programs.neovim = {
enable = true;
plugins = [
{
plugin = pkgs.vimPlugins.vim-nix;
type = "lua";
}
];
};
nmt.script = ''
initLua="home-files/.config/nvim/init.lua"
assertPathNotExists "$initLua"
'';
}