mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-11-02 11:56:37 +00:00
feat: add treesitter textobjects
This commit is contained in:
parent
fee3bbe536
commit
054e4a3b9c
6 changed files with 66 additions and 0 deletions
21
modules/plugins/treesitter/ts-textobjects/textobjects.nix
Normal file
21
modules/plugins/treesitter/ts-textobjects/textobjects.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{lib, ...}: let
|
||||
inherit (lib.options) mkEnableOption;
|
||||
inherit (lib.nvim.types) mkPluginSetupOption;
|
||||
in {
|
||||
options.vim.treesitter.textobjects = {
|
||||
enable = mkEnableOption "Treesitter textobjects";
|
||||
setupOpts =
|
||||
mkPluginSetupOption "treesitter-textobjects" {}
|
||||
// {
|
||||
example = {
|
||||
select = {
|
||||
enable = true;
|
||||
lookahead = true;
|
||||
keymaps = {
|
||||
af = "@function.outer";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue