mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2025-01-08 09:09:49 +01:00
blink: basic keymap option
This commit is contained in:
parent
8897e164ba
commit
e280cdc8f3
1 changed files with 29 additions and 7 deletions
|
@ -1,15 +1,37 @@
|
|||
{lib, ...}: let
|
||||
inherit (lib.options) mkEnableOption mkOption;
|
||||
inherit (lib.types) listOf string;
|
||||
inherit (lib.nvim.types) mkPluginSetupOption;
|
||||
inherit (lib.options) mkEnableOption mkOption literalMD;
|
||||
inherit (lib.types) listOf str either oneOf attrsOf;
|
||||
inherit (lib.nvim.types) mkPluginSetupOption luaInline;
|
||||
in {
|
||||
options.vim.autocomplete.blink-cmp = {
|
||||
enable = mkEnableOption "blink.cmp";
|
||||
setupOpts = mkPluginSetupOption "blink.cmp" {
|
||||
sources = mkOption {
|
||||
type = listOf string;
|
||||
description = "List of sources to enable for completion.";
|
||||
default = ["lsp" "path" "snippets" "buffer"];
|
||||
sources = {
|
||||
default = mkOption {
|
||||
type = listOf str;
|
||||
description = "Default list of sources to enable for completion.";
|
||||
default = ["lsp" "path" "snippets" "buffer"];
|
||||
};
|
||||
};
|
||||
|
||||
keymap = mkOption {
|
||||
type = attrsOf (oneOf [luaInline str (listOf (either str luaInline))]);
|
||||
default = {};
|
||||
description = "blink.cmp keymap";
|
||||
example = literalMD ''
|
||||
```nix
|
||||
"<Up>" = ["select_prev" "fallback"];
|
||||
"<C-n>" = [
|
||||
(lib.generators.mkLuaInline ''''
|
||||
function(cmp)
|
||||
if some_condition then return end -- runs the next command
|
||||
return true -- doesn't run the next command
|
||||
end,
|
||||
'''')
|
||||
"select_next"
|
||||
];
|
||||
```
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue