2022-02-01 11:02:02 +01:00
|
|
|
local M = {}
|
|
|
|
|
|
|
|
function M.setup()
|
|
|
|
require'nvim-treesitter.configs'.setup {
|
2022-05-15 20:56:19 +02:00
|
|
|
ensure_installed = {
|
|
|
|
"bash", "javascript", "typescript", "c", "cpp", "css", "dockerfile",
|
|
|
|
"elixir", "fish", "html", "json", "latex", "python", "rust", "scss",
|
|
|
|
"toml", "tsx", "vim", "yaml", "nix"
|
|
|
|
},
|
2022-02-01 11:02:02 +01:00
|
|
|
sync_install = false,
|
2022-05-15 20:56:19 +02:00
|
|
|
indent = {enable = true},
|
2022-02-01 11:02:02 +01:00
|
|
|
highlight = {
|
2022-05-26 18:33:38 +02:00
|
|
|
enable = false,
|
2022-02-01 11:02:02 +01:00
|
|
|
|
|
|
|
-- Setting this to true will run `:h syntax` and tree-sitter at the same time.
|
|
|
|
-- Set this to `true` if you depend on 'syntax' being enabled (like for indentation).
|
|
|
|
-- Using this option may slow down your editor, and you may see some duplicate highlights.
|
|
|
|
-- Instead of true it can also be a list of languages
|
|
|
|
additional_vim_regex_highlighting = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
return M
|