You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
193 lines
7.1 KiB
193 lines
7.1 KiB
-- This hook checks for a treesitter update, verifies that the plugin
|
|
-- is active and runs TSUpdate
|
|
-- !! It needs to be defined before vim.pack.add to work
|
|
vim.api.nvim_create_autocmd('PackChanged', {
|
|
callback = function(ev)
|
|
local name, kind = ev.data.spec.name, ev.data.kind
|
|
if name == 'nvim-treesitter' and kind == 'update' then
|
|
if not ev.data.active then vim.cmd.packadd('nvim-treesitter') end
|
|
vim.cmd('TSUpdate')
|
|
end
|
|
end
|
|
})
|
|
|
|
vim.pack.add({
|
|
{ src = 'https://github.com/nvim-treesitter/nvim-treesitter', name = 'treesitter', branch = 'main' },
|
|
{ src = 'https://github.com/nvim-treesitter/nvim-treesitter-context', name = 'treesitter-context' },
|
|
{ src = 'https://github.com/nvim-treesitter/nvim-treesitter-textobjects', name = 'treesitter-textobjects' },
|
|
})
|
|
|
|
require("nvim-treesitter").setup()
|
|
require("nvim-treesitter").install({
|
|
"bash",
|
|
"blade",
|
|
"c",
|
|
"comment",
|
|
"css",
|
|
"diff",
|
|
"dockerfile",
|
|
"fish",
|
|
"gitcommit",
|
|
"gitignore",
|
|
"go",
|
|
"gomod",
|
|
"gosum",
|
|
"gowork",
|
|
"html",
|
|
"ini",
|
|
"javascript",
|
|
"jsdoc",
|
|
"json",
|
|
"lua",
|
|
"luadoc",
|
|
"luap",
|
|
"make",
|
|
"markdown",
|
|
"markdown_inline",
|
|
"nginx",
|
|
"nix",
|
|
"proto",
|
|
"python",
|
|
"query",
|
|
"regex",
|
|
"rust",
|
|
"scss",
|
|
"sql",
|
|
"terraform",
|
|
"toml",
|
|
"tsx",
|
|
"typescript",
|
|
"vim",
|
|
"vimdoc",
|
|
"xml",
|
|
"yaml",
|
|
"zig",
|
|
})
|
|
|
|
|
|
-- configuration
|
|
require("nvim-treesitter-textobjects").setup {
|
|
select = {
|
|
-- Automatically jump forward to textobj, similar to targets.vim
|
|
lookahead = true,
|
|
-- You can choose the select mode (default is charwise 'v')
|
|
--
|
|
-- Can also be a function which gets passed a table with the keys
|
|
-- * query_string: eg '@function.inner'
|
|
-- * method: eg 'v' or 'o'
|
|
-- and should return the mode ('v', 'V', or '<c-v>') or a table
|
|
-- mapping query_strings to modes.
|
|
selection_modes = {
|
|
['@parameter.outer'] = 'v', -- charwise
|
|
['@function.outer'] = 'V', -- linewise
|
|
['@class.outer'] = '<c-v>', -- blockwise
|
|
},
|
|
-- If you set this to `true` (default is `false`) then any textobject is
|
|
-- extended to include preceding or succeeding whitespace. Succeeding
|
|
-- whitespace has priority in order to act similarly to eg the built-in
|
|
-- `ap`.
|
|
--
|
|
-- Can also be a function which gets passed a table with the keys
|
|
-- * query_string: eg '@function.inner'
|
|
-- * selection_mode: eg 'v'
|
|
-- and should return true of false
|
|
include_surrounding_whitespace = false,
|
|
},
|
|
move = {
|
|
-- whether to set jumps in the jumplist
|
|
set_jumps = true,
|
|
},
|
|
}
|
|
|
|
-- keymaps
|
|
-- You can use the capture groups defined in `textobjects.scm`
|
|
vim.keymap.set({ "x", "o" }, "am", function()
|
|
require "nvim-treesitter-textobjects.select".select_textobject("@function.outer", "textobjects")
|
|
end)
|
|
vim.keymap.set({ "x", "o" }, "im", function()
|
|
require "nvim-treesitter-textobjects.select".select_textobject("@function.inner", "textobjects")
|
|
end)
|
|
vim.keymap.set({ "x", "o" }, "ac", function()
|
|
require "nvim-treesitter-textobjects.select".select_textobject("@class.outer", "textobjects")
|
|
end)
|
|
vim.keymap.set({ "x", "o" }, "ic", function()
|
|
require "nvim-treesitter-textobjects.select".select_textobject("@class.inner", "textobjects")
|
|
end)
|
|
vim.keymap.set({ "x", "o" }, "ia", function()
|
|
require "nvim-treesitter-textobjects.select".select_textobject("@parameter.inner", "textobjects")
|
|
end)
|
|
vim.keymap.set({ "x", "o" }, "aa", function()
|
|
require "nvim-treesitter-textobjects.select".select_textobject("@parameter.inner", "textobjects")
|
|
end)
|
|
vim.keymap.set({ "x", "o" }, "il", function()
|
|
require "nvim-treesitter-textobjects.select".select_textobject("@parameter.loop", "textobjects")
|
|
end)
|
|
vim.keymap.set({ "x", "o" }, "al", function()
|
|
require "nvim-treesitter-textobjects.select".select_textobject("@parameter.loop", "textobjects")
|
|
end)
|
|
-- You can also use captures from other query groups like `locals.scm`
|
|
vim.keymap.set({ "x", "o" }, "as", function()
|
|
require "nvim-treesitter-textobjects.select".select_textobject("@local.scope", "locals")
|
|
end)
|
|
|
|
-- SWAP Keymaps
|
|
vim.keymap.set("n", "<leader>a", function()
|
|
require("nvim-treesitter-textobjects.swap").swap_next "@parameter.inner"
|
|
end)
|
|
vim.keymap.set("n", "<leader>A", function()
|
|
require("nvim-treesitter-textobjects.swap").swap_previous "@parameter.outer"
|
|
end)
|
|
|
|
-- MOVE keymaps
|
|
-- You can use the capture groups defined in `textobjects.scm`
|
|
vim.keymap.set({ "n", "x", "o" }, "]m", function()
|
|
require("nvim-treesitter-textobjects.move").goto_next_start("@function.outer", "textobjects")
|
|
end)
|
|
vim.keymap.set({ "n", "x", "o" }, "]]", function()
|
|
require("nvim-treesitter-textobjects.move").goto_next_start("@class.outer", "textobjects")
|
|
end)
|
|
-- You can also pass a list to group multiple queries.
|
|
vim.keymap.set({ "n", "x", "o" }, "]o", function()
|
|
require("nvim-treesitter-textobjects.move").goto_next_start({ "@loop.inner", "@loop.outer" }, "textobjects")
|
|
end)
|
|
-- You can also use captures from other query groups like `locals.scm` or `folds.scm`
|
|
vim.keymap.set({ "n", "x", "o" }, "]s", function()
|
|
require("nvim-treesitter-textobjects.move").goto_next_start("@local.scope", "locals")
|
|
end)
|
|
vim.keymap.set({ "n", "x", "o" }, "]M", function()
|
|
require("nvim-treesitter-textobjects.move").goto_next_end("@function.outer", "textobjects")
|
|
end)
|
|
vim.keymap.set({ "n", "x", "o" }, "][", function()
|
|
require("nvim-treesitter-textobjects.move").goto_next_end("@class.outer", "textobjects")
|
|
end)
|
|
vim.keymap.set({ "n", "x", "o" }, "[m", function()
|
|
require("nvim-treesitter-textobjects.move").goto_previous_start("@function.outer", "textobjects")
|
|
end)
|
|
vim.keymap.set({ "n", "x", "o" }, "[[", function()
|
|
require("nvim-treesitter-textobjects.move").goto_previous_start("@class.outer", "textobjects")
|
|
end)
|
|
|
|
vim.keymap.set({ "n", "x", "o" }, "[M", function()
|
|
require("nvim-treesitter-textobjects.move").goto_previous_end("@function.outer", "textobjects")
|
|
end)
|
|
vim.keymap.set({ "n", "x", "o" }, "[]", function()
|
|
require("nvim-treesitter-textobjects.move").goto_previous_end("@class.outer", "textobjects")
|
|
end)
|
|
|
|
|
|
local ts_repeat_move = require "nvim-treesitter-textobjects.repeatable_move"
|
|
|
|
-- Repeat movement with ; and ,
|
|
-- ensure ; goes forward and , goes backward regardless of the last direction
|
|
vim.keymap.set({ "n", "x", "o" }, ";", ts_repeat_move.repeat_last_move_next)
|
|
vim.keymap.set({ "n", "x", "o" }, ",", ts_repeat_move.repeat_last_move_previous)
|
|
|
|
-- Optionally, make builtin f, F, t, T also repeatable with ; and ,
|
|
vim.keymap.set({ "n", "x", "o" }, "f", ts_repeat_move.builtin_f_expr, { expr = true })
|
|
vim.keymap.set({ "n", "x", "o" }, "F", ts_repeat_move.builtin_F_expr, { expr = true })
|
|
vim.keymap.set({ "n", "x", "o" }, "t", ts_repeat_move.builtin_t_expr, { expr = true })
|
|
vim.keymap.set({ "n", "x", "o" }, "T", ts_repeat_move.builtin_T_expr, { expr = true })
|
|
|
|
-- Use treesitter for auto indentation detection
|
|
vim.bo.indentexpr = "v:lua.vim.treesitter.indentexpr()"
|