mirror of
https://github.com/akr2002/nv.git
synced 2024-11-09 18:49:45 +00:00
16 lines
296 B
Nix
16 lines
296 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
plugins.luasnip = {
|
|
enable = true;
|
|
extraConfig = {
|
|
enable_autosnipptets = true;
|
|
store_selection_keys = "<Tab>";
|
|
};
|
|
fromVscode = [
|
|
{
|
|
lazyLoad = true;
|
|
paths = "${pkgs.vimPlugins.friendly-snippets}";
|
|
}
|
|
];
|
|
};
|
|
}
|