nixvim!
This commit is contained in:
parent
cee77dd6af
commit
a1562df146
47 changed files with 2430 additions and 108 deletions
15
modules/editors/nixvim/plug/snippets/luasnip.nix
Normal file
15
modules/editors/nixvim/plug/snippets/luasnip.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{pkgs, ...}: {
|
||||
plugins.luasnip = {
|
||||
enable = true;
|
||||
extraConfig = {
|
||||
enable_autosnippets = true;
|
||||
store_selection_keys = "<Tab>";
|
||||
};
|
||||
fromVscode = [
|
||||
{
|
||||
lazyLoad = true;
|
||||
paths = "${pkgs.vimPlugins.friendly-snippets}";
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue