2023-11-07 01:50:27 +01:00
|
|
|
{lib, ...}: let
|
2024-03-15 12:19:11 +01:00
|
|
|
inherit (lib.options) mkOption mkEnableOption;
|
|
|
|
inherit (lib.nvim.binds) mkMappingOption;
|
|
|
|
inherit (lib.types) listOf package;
|
2023-11-07 01:50:27 +01:00
|
|
|
in {
|
2023-02-01 20:11:37 +01:00
|
|
|
options.vim.treesitter = {
|
2023-04-17 22:27:27 +02:00
|
|
|
enable = mkEnableOption "treesitter, also enabled automatically through language options";
|
|
|
|
fold = mkEnableOption "fold with treesitter";
|
|
|
|
autotagHtml = mkEnableOption "autoclose and rename html tag";
|
2023-02-01 20:11:37 +01:00
|
|
|
grammars = mkOption {
|
2024-03-15 12:19:11 +01:00
|
|
|
type = listOf package;
|
2023-04-17 22:27:27 +02:00
|
|
|
default = [];
|
2023-11-04 12:30:04 +01:00
|
|
|
description = ''
|
2023-04-17 22:27:27 +02:00
|
|
|
List of treesitter grammars to install. For supported languages
|
|
|
|
use the `vim.language.<lang>.treesitter` option
|
2023-02-01 20:11:37 +01:00
|
|
|
'';
|
|
|
|
};
|
2024-03-15 12:19:11 +01:00
|
|
|
|
|
|
|
mappings.incrementalSelection = {
|
|
|
|
init = mkMappingOption "Init selection [treesitter]" "gnn";
|
|
|
|
incrementByNode = mkMappingOption "Increment selection by node [treesitter]" "grn";
|
|
|
|
incrementByScope = mkMappingOption "Increment selection by scope [treesitter]" "grc";
|
|
|
|
decrementByNode = mkMappingOption "Decrement selection by node [treesitter]" "grm";
|
|
|
|
};
|
2023-02-01 20:11:37 +01:00
|
|
|
};
|
|
|
|
}
|