neovim/lua/plugins/treesitter.lua

24 lines
597 B
Lua
Raw Normal View History

require('nvim-treesitter.configs').setup {
ensure_installed = { "lua", "rust", "elm", "python", "yaml", "toml" },
auto_install = true,
highlight = {
enable = true,
2024-01-02 01:43:10 +01:00
additional_vim_regex_highlighting=true,
},
ident = {
enable = true,
},
2024-01-02 01:43:10 +01:00
incremental_selection = {
enable = true,
2024-01-02 01:43:10 +01:00
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", { })