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