mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-01 21:04:30 +02:00
plugins/lexima: init
This commit is contained in:
parent
1a5f1b4393
commit
2f5374c3dc
3 changed files with 104 additions and 0 deletions
36
tests/test-sources/plugins/by-name/lexima/default.nix
Normal file
36
tests/test-sources/plugins/by-name/lexima/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.lexima.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
plugins.lexima = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
no_default_rules = 0;
|
||||
map_escape = "<Esc>";
|
||||
enable_basic_rules = 1;
|
||||
enable_newline_rules = 1;
|
||||
enable_space_rules = 1;
|
||||
enable_endwise_rules = 1;
|
||||
accept_pum_with_enter = 1;
|
||||
ctrlh_as_backspace = 0;
|
||||
disable_on_nofile = 0;
|
||||
disable_abbrev_trigger = 0;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
example = {
|
||||
plugins.lexima = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
map_escape = "";
|
||||
enable_space_rules = 0;
|
||||
enable_endwise_rules = 0;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue