plugins.luasnip.fromVscode
List of custom vscode style snippets to load.
For example,
[ {} { paths = ./path/to/snippets; } ]
will generate the following lua:
require("luasnip.loaders.from_vscode").lazy_load({})
require("luasnip.loaders.from_vscode").lazy_load({['paths'] = {'/nix/store/.../path/to/snippets'}})
Type: list of (submodule)
Default:
[ ]
Example:
[
{ }
{ paths = ./path/to/snippets; }
]
Declared by:
plugins.luasnip.fromVscode.*.exclude
List of languages to exclude, by default is empty.
Type: null or (list of (string or raw lua code)) or raw lua code
Default:
null
Declared by:
plugins.luasnip.fromVscode.*.include
List of languages to include, by default is not set.
Type: null or (list of (string or raw lua code)) or raw lua code
Default:
null
Declared by:
plugins.luasnip.fromVscode.*.lazyLoad
Whether or not to lazy load the snippets
Type: boolean
Default:
true
Declared by:
plugins.luasnip.fromVscode.*.paths
List of paths to load.
Type: null or string or path or raw lua code or list of (string or path or raw lua code)
Default:
null
Declared by: