plugins/snippets: move to by-name

This commit is contained in:
Matt Sturgeon 2024-09-05 02:41:27 +01:00
parent 2a91b89445
commit 82e7d153e4
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299
7 changed files with 0 additions and 4 deletions

View file

@ -0,0 +1,31 @@
{
empty = {
plugins.luasnip.enable = true;
};
example = {
plugins.luasnip = {
enable = true;
settings = {
history = true;
updateevents = "TextChanged,TextChangedI";
enable_autosnippets = true;
ext_opts = {
"__rawKey__require('luasnip.util.types').choiceNode".active.virt_text = [
[
""
"GruvboxOrange"
]
];
"__rawKey__require('luasnip.util.types').insertNode".active.virt_text = [
[
""
"GruvboxBlue"
]
];
};
};
};
};
}