feat(nvim): Disable treesitter on big files
This commit is contained in:
parent
b33bc5a778
commit
f523a536a7
@ -8,6 +8,14 @@ return {
|
|||||||
auto_install = true,
|
auto_install = true,
|
||||||
highlight = {
|
highlight = {
|
||||||
enable = true,
|
enable = true,
|
||||||
|
is_supported = function ()
|
||||||
|
if vim.fn.strwidth(vim.fn.getline('.')) > 300
|
||||||
|
or vim.fn.getfsize(vim.fn.expand('%')) > 1024 * 1024 then
|
||||||
|
return false
|
||||||
|
else
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
end
|
||||||
},
|
},
|
||||||
enable = {
|
enable = {
|
||||||
enable = true,
|
enable = true,
|
||||||
|
Loading…
Reference in New Issue
Block a user