1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2025-02-13 00:12:55 +01:00
neovim-flake/modules/snippets/vsnip/config.nix
2023-03-31 05:20:35 +03:00

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"];
};
}