nix-community.nixvim/plugins/by-name/friendly-snippets/default.nix
2024-12-16 10:42:07 +00:00

14 lines
299 B
Nix

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