23 lines
597 B
Lua
23 lines
597 B
Lua
require('nvim-treesitter.configs').setup {
|
|
ensure_installed = { "lua", "rust", "elm", "python", "yaml", "toml" },
|
|
auto_install = true,
|
|
highlight = {
|
|
enable = true,
|
|
additional_vim_regex_highlighting=true,
|
|
},
|
|
ident = {
|
|
enable = true,
|
|
},
|
|
incremental_selection = {
|
|
enable = true,
|
|
keymaps = {
|
|
init_selection = "gnn", -- set to `false` to disable one of the mappings
|
|
node_incremental = "grn",
|
|
scope_incremental = "grc",
|
|
node_decremental = "grm",
|
|
},
|
|
}
|
|
}
|
|
|
|
vim.api.nvim_set_hl(0, "@variable", { })
|
|
vim.api.nvim_set_hl(0, "@parameter", { })
|