mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-07 22:55:58 +01:00
13 lines
171 B
Nix
13 lines
171 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
with builtins; let
|
|
cfg = config.vim.snippets.vsnip;
|
|
in {
|
|
config = mkIf cfg.enable {
|
|
vim.startPlugins = ["vim-vsnip"];
|
|
};
|
|
}
|