2021-12-23 23:13:45 +00:00
|
|
|
local status_ok, configs = pcall(require, "nvim-treesitter.configs")
|
|
|
|
if not status_ok then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
configs.setup {
|
2021-11-17 09:00:00 +00:00
|
|
|
context_commenting = {
|
2022-01-09 00:07:35 +00:00
|
|
|
enable = true,
|
2021-11-17 09:00:00 +00:00
|
|
|
},
|
|
|
|
ensure_installed = "maintained",
|
|
|
|
highlight = {
|
|
|
|
enable = true,
|
2021-12-24 13:00:00 +00:00
|
|
|
},
|
|
|
|
indent = {
|
2022-01-03 20:46:22 +00:00
|
|
|
disable = { "yaml" },
|
2021-12-24 13:00:00 +00:00
|
|
|
enable = true,
|
2022-01-09 00:07:35 +00:00
|
|
|
},
|
2022-03-31 00:13:30 +00:00
|
|
|
matchup = {
|
|
|
|
enable = true,
|
|
|
|
}
|
2021-11-17 09:00:00 +00:00
|
|
|
}
|
2022-04-03 19:45:24 +00:00
|
|
|
|
|
|
|
local nmap = require "opdavies.keymap".nmap
|
|
|
|
|
|
|
|
nmap({ "<leader>th", "<cmd>TSHighlightCapturesUnderCursor<CR>" })
|
|
|
|
nmap({ "<leader>tp", "<cmd>TSPlaygroundToggle<CR>" })
|