nix-community.nixvim/plugins/by-name/friendly-snippets/default.nix

15 lines
296 B
Nix
Raw Permalink Normal View History

2024-01-22 11:25:52 +01:00
{
lib,
...
}:
2024-12-22 09:58:27 +00:00
lib.nixvim.plugins.mkVimPlugin {
name = "friendly-snippets";
2024-01-22 11:25:52 +01:00
maintainers = [ lib.maintainers.GaetanLepage ];
2024-01-22 11:25:52 +01:00
extraConfig = {
2024-01-22 11:25:52 +01:00
# Simply add an element to the `fromVscode` list to trigger the import of friendly-snippets
2024-05-05 19:39:35 +02:00
plugins.luasnip.fromVscode = [ { } ];
2024-01-22 11:25:52 +01:00
};
}