mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 11:14:08 +00:00
134 lines
3.5 KiB
Lua
134 lines
3.5 KiB
Lua
-- Nvim Treesitter configurations and abstraction layer
|
|
-- https://github.com/nvim-treesitter/nvim-treesitter
|
|
-- luacheck: globals vim
|
|
return {
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
build = ":TSUpdate",
|
|
config = function()
|
|
require("nvim-treesitter.configs").setup({
|
|
-- Install parsers synchronously (only applied to `ensure_installed`)
|
|
sync_install = false,
|
|
|
|
-- Automatically install missing parsers when entering buffer
|
|
-- Recommendation: set to false if you don't have `tree-sitter` CLI installed locally
|
|
auto_install = true,
|
|
|
|
-- List of parsers to ignore installing (or "all")
|
|
ignore_install = {},
|
|
|
|
modules = {},
|
|
|
|
-- Add languages to be installed here that you want installed for treesitter
|
|
ensure_installed = {
|
|
"bash",
|
|
"c",
|
|
"cmake",
|
|
"comment",
|
|
"diff",
|
|
"dockerfile",
|
|
"gitignore",
|
|
"go",
|
|
"graphql",
|
|
"html",
|
|
"javascript",
|
|
"json",
|
|
"json5",
|
|
"latex",
|
|
"lua",
|
|
"markdown",
|
|
"php",
|
|
"phpdoc",
|
|
"python",
|
|
"regex",
|
|
"scss",
|
|
"terraform",
|
|
"todotxt",
|
|
"toml",
|
|
"tsx",
|
|
"typescript",
|
|
"vim",
|
|
"vimdoc",
|
|
"vue",
|
|
"yaml",
|
|
},
|
|
|
|
highlight = {
|
|
enable = true,
|
|
disable = {},
|
|
--injections = {
|
|
-- python = {
|
|
-- docstrings: "markdown",
|
|
-- },
|
|
--}
|
|
},
|
|
indent = { enable = true },
|
|
incremental_selection = {
|
|
enable = true,
|
|
keymaps = {
|
|
init_selection = "<c-space>",
|
|
node_incremental = "<c-space>",
|
|
scope_incremental = "<c-s>",
|
|
node_decremental = "<M-space>",
|
|
},
|
|
},
|
|
textobjects = {
|
|
select = {
|
|
enable = true,
|
|
-- Automatically jump forward to textobj, similar to targets.vim
|
|
lookahead = true,
|
|
keymaps = {
|
|
-- You can use the capture groups defined in textobjects.scm
|
|
["aa"] = "@parameter.outer",
|
|
["ia"] = "@parameter.inner",
|
|
["af"] = "@function.outer",
|
|
["if"] = "@function.inner",
|
|
["ac"] = "@class.outer",
|
|
["ic"] = "@class.inner",
|
|
},
|
|
},
|
|
move = {
|
|
enable = true,
|
|
-- whether to set jumps in the jumplist
|
|
set_jumps = true,
|
|
goto_next_start = {
|
|
["]m"] = "@function.outer",
|
|
["]]"] = "@class.outer",
|
|
},
|
|
goto_next_end = {
|
|
["]M"] = "@function.outer",
|
|
["]["] = "@class.outer",
|
|
},
|
|
goto_previous_start = {
|
|
["[m"] = "@function.outer",
|
|
["[["] = "@class.outer",
|
|
},
|
|
goto_previous_end = {
|
|
["[M"] = "@function.outer",
|
|
["[]"] = "@class.outer",
|
|
},
|
|
},
|
|
swap = {
|
|
enable = true,
|
|
swap_next = {
|
|
["<leader>a"] = "@parameter.inner",
|
|
},
|
|
swap_previous = {
|
|
["<leader>A"] = "@parameter.inner",
|
|
},
|
|
},
|
|
},
|
|
})
|
|
end,
|
|
},
|
|
{
|
|
"nvim-treesitter/nvim-treesitter-context",
|
|
lazy = false,
|
|
enabled = true,
|
|
opts = {
|
|
enable = true,
|
|
mode = "cursor", -- cursor, or topline
|
|
},
|
|
}
|
|
}
|