1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/plugins/by-name/lexima/default.nix
saygo-png c4b27080a6 treewide: infer packPathName menial work
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-09-27 23:49:59 +00:00

17 lines
418 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkVimPlugin {
name = "lexima";
package = "lexima-vim";
globalPrefix = "lexima_";
description = "Auto close parentheses (and other pairs) by pressing \"dot\"s.";
maintainers = [ lib.maintainers.GaetanLepage ];
settingsOptions = import ./settings-options.nix lib;
settingsExample = {
map_escape = "";
enable_space_rules = 0;
enable_endwise_rules = 0;
};
}