dotfiles/roles/neovim/files/after/plugin/treesitter.lua

67 lines
1.1 KiB
Lua
Raw Normal View History

local has_configs, configs = pcall(require, "nvim-treesitter.configs")
if not has_configs then
return
end
configs.setup {
context_commenting = {
2022-01-09 00:07:35 +00:00
enable = true,
},
ensure_installed = {
"bash",
"comment",
"css",
"dockerfile",
"go",
"html",
"javascript",
"json",
"lua",
"make",
"markdown",
"php",
"regex",
"rst",
"scss",
"typescript",
"vim",
"vue",
"yaml",
},
highlight = {
enable = true,
},
indent = {
disable = { "yaml" },
enable = true,
2022-01-09 00:07:35 +00:00
},
2022-03-31 00:13:30 +00:00
matchup = {
enable = true,
},
textobjects = {
select = {
enable = true,
lookahead = true,
keymaps = {
["af"] = "@function.outer",
["if"] = "@function.inner",
["ac"] = "@class.outer",
["ic"] = "@class.inner",
},
},
},
}
2022-04-03 19:45:24 +00:00
local nmap = require("opdavies.keymap").nmap
2022-04-03 19:45:24 +00:00
nmap { "<leader>th", "<cmd>TSHighlightCapturesUnderCursor<CR>" }
nmap { "<leader>tp", "<cmd>TSPlaygroundToggle<CR>" }
local has_context, context = pcall(require, "treesitter-context")
if not has_context then
return
end
context.setup { enable = true }