nix-community.nixvim/tests/test-sources/plugins/by-name/sandwich/default.nix

27 lines
436 B
Nix
Raw Normal View History

2024-03-26 17:25:39 +01:00
{
empty = {
plugins.sandwich.enable = true;
};
example = {
plugins.sandwich = {
enable = true;
settings = {
2024-09-08 13:52:18 +01:00
no_default_key_mappings = 1;
no_tex_ftplugin = 1;
no_vim_ftplugin = 1;
2024-03-26 17:25:39 +01:00
};
};
globals."sandwich#magicchar#f#patterns" = [
{
header.__raw = "[[\<\%(\h\k*\.\)*\h\k*]]";
bra = "(";
ket = ")";
footer = "";
}
];
};
}