-
-
Notifications
You must be signed in to change notification settings - Fork 296
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8f7600a
commit 67bbdf9
Showing
2 changed files
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
{ lib, pkgs, ... }: | ||
let | ||
inherit (lib.nixvim) defaultNullOpts; | ||
in | ||
lib.nixvim.plugins.mkVimPlugin { | ||
name = "cornelis"; | ||
globalPrefix = "cornelis_"; | ||
|
||
maintainers = [ lib.maintainers.GaetanLepage ]; | ||
|
||
extraOptions = { | ||
cornelisPackage = lib.mkPackageOption pkgs "cornelis" { | ||
nullable = true; | ||
}; | ||
}; | ||
|
||
extraConfig = cfg: { | ||
extraPackages = [ cfg.cornelisPackage ]; | ||
}; | ||
|
||
settingsOptions = { | ||
use_global_binary = defaultNullOpts.mkFlagInt 0 '' | ||
Whether to use global binary instead of stack. | ||
''; | ||
|
||
agda_prefix = defaultNullOpts.mkStr' { | ||
pluginDefault = "<localleader>"; | ||
example = "<Tab>"; | ||
description = '' | ||
Prefix used for agda keybindings. | ||
''; | ||
}; | ||
|
||
no_agda_input = defaultNullOpts.mkFlagInt 0 '' | ||
Disable the default keybindings. | ||
''; | ||
|
||
bind_input_hook = defaultNullOpts.mkStr' { | ||
pluginDefault = null; | ||
example = "MyCustomHook"; | ||
description = '' | ||
If you'd prefer to manage agda-input entirely on your own (perhaps in a snippet system), you | ||
can customize the bind input hook. | ||
''; | ||
}; | ||
}; | ||
|
||
settingsExample = { | ||
use_global_binary = 1; | ||
agda_prefix = "<Tab>"; | ||
no_agda_input = 1; | ||
bind_input_hook = "MyCustomHook"; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
empty = { | ||
plugins.cornelis.enable = true; | ||
}; | ||
|
||
defaults = { | ||
plugins.cornelis = { | ||
enable = true; | ||
|
||
settings = { | ||
use_global_binary = 0; | ||
agda_prefix = "<localleader>"; | ||
no_agda_input = 0; | ||
bind_input_hook = null; | ||
}; | ||
}; | ||
}; | ||
|
||
example = { | ||
plugins.cornelis = { | ||
enable = true; | ||
|
||
settings = { | ||
use_global_binary = 1; | ||
agda_prefix = "<Tab>"; | ||
no_agda_input = 1; | ||
bind_input_hook = "MyCustomHook"; | ||
}; | ||
}; | ||
}; | ||
} |