31 lines
655 B
Lua
31 lines
655 B
Lua
|
local lsps = {
|
||
|
"c",
|
||
|
"lua",
|
||
|
"rust",
|
||
|
"typescript",
|
||
|
"javascript",
|
||
|
"python",
|
||
|
"vim",
|
||
|
"vimdoc",
|
||
|
"query"
|
||
|
};
|
||
|
|
||
|
require('nvim-treesitter.configs').setup {
|
||
|
ensure_installed = lsps,
|
||
|
sync_install = false,
|
||
|
auto_install = true,
|
||
|
ignore_install = { "javascript" },
|
||
|
highlight = {
|
||
|
enable = true,
|
||
|
disable = { "c", "rust" },
|
||
|
disable = function(lang, buf)
|
||
|
local max_filesize = 100 * 1024 -- 100 KB
|
||
|
local ok, stats = pcall(vim.loop.fs_stat, vim.api.nvim_buf_get_name(buf))
|
||
|
if ok and stats and stats.size > max_filesize then
|
||
|
return true
|
||
|
end
|
||
|
end,
|
||
|
additional_vim_regex_highlighting = false,
|
||
|
},
|
||
|
}
|