mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
fix(treesitter-rewrite): disable vim-illuminate
This commit is contained in:
parent
62f4f484d7
commit
c3483f86df
1 changed files with 9 additions and 0 deletions
|
|
@ -13,6 +13,11 @@ if vim.fn.executable("tree-sitter") == 0 then
|
||||||
return {}
|
return {}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if vim.fn.has("nvim-0.10") == 0 then
|
||||||
|
LazyVim.error("**treesitter-rewrite** requires Neovim >= 0.10")
|
||||||
|
return {}
|
||||||
|
end
|
||||||
|
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"nvim-treesitter/nvim-treesitter",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
|
|
@ -90,4 +95,8 @@ return {
|
||||||
"windwp/nvim-ts-autotag",
|
"windwp/nvim-ts-autotag",
|
||||||
enabled = false,
|
enabled = false,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"RRethy/vim-illuminate",
|
||||||
|
enabled = false,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue