1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2025-02-15 11:32:08 +01:00
neovim-flake/modules/snippets/vsnip/vsnip.nix

12 lines
143 B
Nix
Raw Normal View History

{
config,
lib,
...
}:
with lib;
2023-03-31 05:20:35 +03:00
with builtins; {
options.vim.snippets.vsnip = {
enable = mkEnableOption "Enable vim-vsnip";
};
}