mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 09:18:38 +02:00
8 lines
147 B
Nix
8 lines
147 B
Nix
{ lib }:
|
|
with lib;
|
|
{
|
|
options = {
|
|
enable = mkEnableOption "nixvim";
|
|
defaultEditor = mkEnableOption "nixvim as the default editor";
|
|
};
|
|
}
|