Files
nvim/lua/plugins/configs/treesitter.lua
T

26 lines
439 B
Lua

local options = {
ensure_installed = { "lua", "elixir" },
highlight = {
enable = true,
use_languagetree = true,
},
indent = { enable = true },
textobjects = {
select = {
enable = true,
lookahead = true,
keymaps = {
-- custom mappings (example)
["ad"] = "@block.outer", -- around do...end
["id"] = "@block.inner", -- inside do...end
},
},
},
}
return options