mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
wrappers: cleanup with lib
This commit is contained in:
parent
1c9ba58aef
commit
c76e5070b9
1 changed files with 3 additions and 4 deletions
|
@ -1,11 +1,10 @@
|
|||
{ lib, ... }:
|
||||
with lib;
|
||||
{
|
||||
options = {
|
||||
defaultEditor = mkEnableOption "nixvim as the default editor";
|
||||
defaultEditor = lib.mkEnableOption "nixvim as the default editor";
|
||||
|
||||
vimdiffAlias = mkOption {
|
||||
type = types.bool;
|
||||
vimdiffAlias = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
description = ''
|
||||
Alias `vimdiff` to `nvim -d`.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue