1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-30 14:11:03 +01:00
nixvim/plugins/by-name/lexima/default.nix

18 lines
449 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkVimPlugin {
name = "lexima";
packPathName = "lexima.vim";
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;
};
}