nvf/modules/comments/comment-nvim/comment-nvim.nix

12 lines
146 B
Nix
Raw Normal View History

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