plugins/lexima: init

This commit is contained in:
Gaetan Lepage 2025-01-28 18:33:31 +01:00 committed by nix-infra-bot
parent 1a5f1b4393
commit 2f5374c3dc
3 changed files with 104 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ lib, ... }:
lib.nixvim.plugins.mkVimPlugin {
name = "lexima";
packPathName = "lexima.vim";
package = "lexima-vim";
globalPrefix = "lexima_";
maintainers = [ lib.maintainers.GaetanLepage ];
settingsOptions = import ./settings-options.nix lib;
settingsExample = {
map_escape = "";
enable_space_rules = 0;
enable_endwise_rules = 0;
};
}