mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
16 lines
304 B
Nix
16 lines
304 B
Nix
{ lib }:
|
|
with lib;
|
|
{
|
|
options = {
|
|
enable = mkEnableOption "nixvim";
|
|
defaultEditor = mkEnableOption "nixvim as the default editor";
|
|
|
|
vimdiffAlias = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = ''
|
|
Alias `vimdiff` to `nvim -d`.
|
|
'';
|
|
};
|
|
};
|
|
}
|