dotfiles/modules/programs/nvim/plugins/treesitter.nix

76 lines
2.3 KiB
Nix
Raw Normal View History

2023-09-10 13:30:29 +02:00
{ lib, pkgs, ... }:
with builtins;
{
2023-09-17 09:35:10 +02:00
config.home-manager.users.moritz.programs.neovim.lazy.plugins = with pkgs.vimPlugins; [
2023-09-10 13:30:29 +02:00
{
plugin = nvim-treesitter;
event = [ "BufReadPost" "BufNewFile" ];
2023-12-08 16:06:00 +01:00
opts = {
sync_install = false;
auto_install = false;
highlight = {
enable = true;
};
textobjects =
{
select =
{
enable = true;
# Automatically jump forward to textobj, similar to targets.vim
lookahead = false;
keymaps = {
# You can use the capture groups defined in textobjects.scm
"af" = {
query = "@function.outer";
desc = "Select outer part of a function region";
};
"if" = {
query = "@function.inner";
desc = "Select inner part of a function region";
};
"ac" = {
query = "@class.outer";
desc = "Select outer part of a class region";
};
"ic" = {
query = "@class.inner";
desc = "Select inner part of a class region";
};
};
};
};
};
2023-09-10 13:30:29 +02:00
conf =
let
2023-12-08 16:06:00 +01:00
parserDir = pkgs.symlinkJoin
{
name = "tresitter-grammars-all";
paths = lib.attrValues (lib.filterAttrs (_: builtins.isAttrs) nvim-treesitter-parsers);
};
2023-09-10 13:30:29 +02:00
in
2023-12-08 16:06:00 +01:00
''
2023-09-10 13:30:29 +02:00
vim.opt.runtimepath:append("${parserDir}")
2023-12-08 16:06:00 +01:00
local final_opts = vim.tbl_deep_extend("keep", opts, { parser_install_dir = "${parserDir}" })
require('nvim-treesitter.configs').setup(final_opts)
2023-09-10 13:30:29 +02:00
'';
dependencies = [
2023-12-08 16:06:00 +01:00
{ plugin = nvim-treesitter-textobjects; }
2023-11-30 14:46:29 +01:00
{ plugin = nvim-ts-context-commentstring; opts = { }; }
2023-09-10 13:30:29 +02:00
];
}
{
plugin = nvim-treesitter-textsubjects;
event = [ "BufReadPost" "BufNewFile" ];
conf = readFile ./lua/nvim-treesitter-textsubjects.lua;
}
{
plugin = nvim-treesitter-context;
event = [ "BufReadPost" "BufNewFile" ];
opts = { };
}
];
}