This commit is contained in:
Zacharias-Brohn
2025-02-15 17:47:41 +01:00
parent 35b951e1b6
commit 9e53ed6666
2 changed files with 20 additions and 25 deletions
+7 -14
View File
@@ -1,16 +1,9 @@
require'nvim-treesitter.configs'.setup {
ensure_installed = "all",
sync_install = false,
auto_install = true,
highlight = {
enable = true,
disable = function(lang, buf)
local max_filesize = 100 * 1024
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,
},
ensure_installed = "all",
sync_install = true,
auto_install = true,
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
}