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

11 lines
143 B
Nix

{
config,
lib,
...
}:
with lib;
with builtins; {
options.vim.snippets.vsnip = {
enable = mkEnableOption "Enable vim-vsnip";
};
}