Files
nixos-config/home-manager/commands/nixvim/plugins/lint.nix

14 lines
184 B
Nix

{
programs.nixvim.plugins = {
lint = {
enable = true;
autoCmd = {
event = [
"InsertLeave"
"TextChanged"
];
};
};
};
}