1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/plugins/by-name/friendly-snippets/default.nix

15 lines
370 B
Nix

{
lib,
...
}:
lib.nixvim.plugins.mkVimPlugin {
name = "friendly-snippets";
description = "Set of preconfigured snippets for different languages.";
maintainers = [ lib.maintainers.GaetanLepage ];
extraConfig = {
# Simply add an element to the `fromVscode` list to trigger the import of friendly-snippets
plugins.luasnip.fromVscode = [ { } ];
};
}