mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
37 lines
745 B
Nix
37 lines
745 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
|
||
|
cfg = config.programs.vim-vint;
|
||
|
|
||
|
yamlFormat = pkgs.formats.yaml { };
|
||
|
|
||
|
in {
|
||
|
meta.maintainers = [ maintainers.tomodachi94 ];
|
||
|
|
||
|
options = {
|
||
|
programs.vim-vint = {
|
||
|
enable = mkEnableOption "the Vint linter for Vimscript";
|
||
|
package = mkPackageOption pkgs "vim-vint" { };
|
||
|
|
||
|
settings = mkOption {
|
||
|
type = yamlFormat.type;
|
||
|
default = { };
|
||
|
description = ''
|
||
|
Configuration written to
|
||
|
<filename>$XDG_CONFIG_HOME/.vintrc.yaml</filename>
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
home.packages = [ cfg.package ];
|
||
|
|
||
|
xdg.configFile.".vintrc.yaml".source =
|
||
|
yamlFormat.generate "vim-vint-config" cfg.settings;
|
||
|
};
|
||
|
}
|