nix-community.nixvim/plugins/by-name/lexima/default.nix

19 lines
449 B
Nix
Raw Normal View History

2025-01-28 18:33:31 +01:00
{ lib, ... }:
lib.nixvim.plugins.mkVimPlugin {
name = "lexima";
packPathName = "lexima.vim";
package = "lexima-vim";
globalPrefix = "lexima_";
2025-06-18 02:42:47 +03:00
description = "Auto close parentheses (and other pairs) by pressing \"dot\"s.";
2025-01-28 18:33:31 +01:00
maintainers = [ lib.maintainers.GaetanLepage ];
settingsOptions = import ./settings-options.nix lib;
settingsExample = {
map_escape = "";
enable_space_rules = 0;
enable_endwise_rules = 0;
};
}