mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
with builtins; {
|
|
options.vim.treesitter = {
|
|
enable = mkOption {
|
|
default = false;
|
|
type = types.bool;
|
|
description = "enable tree-sitter [nvim-treesitter]";
|
|
};
|
|
|
|
fold = mkOption {
|
|
default = false;
|
|
type = types.bool;
|
|
description = "enable fold with tree-sitter";
|
|
};
|
|
|
|
autotagHtml = mkOption {
|
|
default = false;
|
|
type = types.bool;
|
|
description = "enable autoclose and rename html tag [nvim-ts-autotag]";
|
|
};
|
|
|
|
grammars = mkOption {
|
|
type = with types; listOf package;
|
|
default = with (pkgs.vimPlugins.nvim-treesitter.builtGrammars);
|
|
[
|
|
c
|
|
cpp
|
|
nix
|
|
python
|
|
rust
|
|
markdown
|
|
comment
|
|
toml
|
|
make
|
|
tsx
|
|
html
|
|
javascript
|
|
css
|
|
graphql
|
|
json
|
|
zig
|
|
]
|
|
++ (optional config.vim.notes.orgmode.enable org); # add orgmode grammar if enabled
|
|
description = ''
|
|
List of treesitter grammars to install.
|
|
When enabling a language, its treesitter grammar is added for you.
|
|
'';
|
|
};
|
|
};
|
|
}
|