mirror of
https://github.com/akr2002/nv.git
synced 2024-11-13 20:49:45 +00:00
17 lines
296 B
Nix
17 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}";
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
}
|