mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
14 lines
296 B
Nix
14 lines
296 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
lib.nixvim.plugins.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 = [ { } ];
|
|
};
|
|
}
|