14 lines
184 B
Nix
14 lines
184 B
Nix
{
|
|
programs.nixvim.plugins = {
|
|
lint = {
|
|
enable = true;
|
|
autoCmd = {
|
|
event = [
|
|
"InsertLeave"
|
|
"TextChanged"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|