1
Fork 0
satellite/dotfiles/neovim/lua/my/plugins/treesitter.lua

28 lines
896 B
Lua
Raw Normal View History

2022-02-01 11:02:02 +01:00
local M = {}
function M.setup()
2022-07-19 20:19:36 +02:00
require 'nvim-treesitter.configs'.setup {
ensure_installed = {
"bash", "javascript", "typescript", "c", "cpp", "css", "dockerfile",
"elixir", "fish", "html", "json", "latex", "python", "rust", "scss",
2022-08-24 13:13:35 +02:00
"toml", "tsx", "vim", "yaml", "nix", "kotlin"
2022-07-19 20:19:36 +02:00
},
2022-10-13 01:33:24 +02:00
disable = { "tex", "latex" },
2022-07-19 20:19:36 +02:00
sync_install = false,
indent = { enable = true },
highlight = {
2022-09-12 13:50:02 +02:00
enable = true,
2022-02-01 11:02:02 +01:00
disable = { "kotlin", "tex", "latex" },
2022-08-24 13:13:35 +02:00
2022-07-19 20:19:36 +02: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
2022-02-01 11:02:02 +01:00
}
2022-07-19 20:19:36 +02:00
}
2022-02-01 11:02:02 +01:00
end
return M