mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
ffc022b6a7
* vim-vint: add module * vim-vint: add tests * maintainers: add tomodachi94 * vim-vint: fix tests --------- Co-authored-by: Naïm Favier <n@monade.li>
27 lines
635 B
Nix
27 lines
635 B
Nix
{ config, pkgs, lib, xdg, ... }:
|
|
|
|
{
|
|
programs.vim-vint = {
|
|
enable = true;
|
|
settings = {
|
|
cmdargs = {
|
|
severity = "error";
|
|
color = true;
|
|
env = { neovim = true; };
|
|
};
|
|
policies = {
|
|
ProhibitEqualTildeOperator.enabled = false;
|
|
ProhibitUsingUndeclaredVariable.enabled = false;
|
|
ProhibitAbbreviationOption.enabled = false;
|
|
ProhibitImplicitScopeVariable.enabled = false;
|
|
ProhibitSetNoCompatible.enabled = false;
|
|
};
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileContent home-files/.config/.vintrc.yaml ${
|
|
./basic-configuration.yaml
|
|
}
|
|
'';
|
|
}
|