feat: fixed treesitter loading
parent
5dc7a83abe
commit
6e81da9740
|
@ -2,14 +2,16 @@ return {
|
||||||
"nvim-treesitter/nvim-treesitter",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
dependencies = { "nvim-treesitter/nvim-treesitter-textobjects" },
|
dependencies = { "nvim-treesitter/nvim-treesitter-textobjects" },
|
||||||
build = ":TSUpdate",
|
build = ":TSUpdate",
|
||||||
config = {
|
config = function()
|
||||||
ensure_installed = "all",
|
require('nvim-treesitter.configs').setup {
|
||||||
sync_install = true,
|
ensure_installed = "all",
|
||||||
ignore_install = {},
|
sync_install = true,
|
||||||
auto_install = true,
|
ignore_install = {},
|
||||||
highlight = {
|
auto_install = true,
|
||||||
enable = true,
|
highlight = {
|
||||||
additional_vim_regex_highlighting = false,
|
enable = true,
|
||||||
},
|
additional_vim_regex_highlighting = false,
|
||||||
}
|
},
|
||||||
|
}
|
||||||
|
end
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue