mirror of
https://github.com/nix-community/nixvim.git
synced 2025-12-25 10:20:59 +01:00
plugins/langmapper: init module
Change-Id: I1caf76d5a6bdd7b1bb9fecfb142a3af1f0b00bd6
This commit is contained in:
parent
32a3fa118d
commit
d60696f62d
2 changed files with 100 additions and 0 deletions
48
tests/test-sources/plugins/by-name/langmapper/default.nix
Normal file
48
tests/test-sources/plugins/by-name/langmapper/default.nix
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
{ lib, ... }:
|
||||
{
|
||||
empty = {
|
||||
plugins.langmapper.enable = true;
|
||||
};
|
||||
|
||||
example = {
|
||||
plugins.langmapper = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
automapping_modes = lib.stringToCharacters "invxs";
|
||||
map_add_ctrl = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
defaults = {
|
||||
plugins.langmapper = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
map_add_ctrl = true;
|
||||
ctrl_map_modes = lib.stringToCharacters "noictv";
|
||||
hack_keymap = true;
|
||||
disable_hack_modes = lib.stringToCharacters "i";
|
||||
automapping_modes = lib.stringToCharacters "invxs";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
automapping-disabled = {
|
||||
plugins.langmapper.enable = true;
|
||||
plugins.langmapper.automapping.enable = false;
|
||||
};
|
||||
|
||||
automapping-changed = {
|
||||
plugins.langmapper.enable = true;
|
||||
plugins.langmapper.automapping.argument = {
|
||||
buffer = true;
|
||||
};
|
||||
};
|
||||
|
||||
automapping-changed-lua = {
|
||||
plugins.langmapper.enable = true;
|
||||
plugins.langmapper.automapping.argument = lib.nixvim.mkRaw "{ buffer = false, global = true }";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue