mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2025-03-14 15:08:53 +00:00
22 lines
315 B
Nix
22 lines
315 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
pkgs,
|
||
|
...
|
||
|
}: {
|
||
|
options = {
|
||
|
nixvim.enable = lib.mkEnableOption "enable nixvim";
|
||
|
};
|
||
|
config = lib.mkIf config.nixvim.enable {
|
||
|
programs.nixvim = {
|
||
|
enable = true;
|
||
|
plugins = {
|
||
|
|
||
|
};
|
||
|
extraPlugins = with pkgs.vimPlugins; [
|
||
|
ultisnips
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|