mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
29 lines
719 B
Nix
29 lines
719 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
with builtins; let
|
|
cfg = config.vim.treesitter;
|
|
usingNvimCmp = config.vim.autocomplete.enable && config.vim.autocomplete.type == "nvim-cmp";
|
|
in {
|
|
options.vim.treesitter = {
|
|
enable = mkEnableOption "treesitter, also enabled automatically through language options";
|
|
|
|
fold = mkEnableOption "fold with treesitter";
|
|
|
|
autotagHtml = mkEnableOption "autoclose and rename html tag";
|
|
|
|
grammars = mkOption {
|
|
type = with types; listOf package;
|
|
default = [];
|
|
description = nvim.nmd.asciiDoc ''
|
|
List of treesitter grammars to install. For supported languages
|
|
use the `vim.language.<lang>.treesitter` option
|
|
'';
|
|
};
|
|
};
|
|
}
|