Skip to content

Commit

Permalink
[nvim] Fix treesitter compat
Browse files Browse the repository at this point in the history
  • Loading branch information
keith committed Jun 16, 2022
1 parent dcd453f commit 7a727b2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions vim/plugin/setup.lua
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,11 @@ function has_highlights(lang)
end

require("nvim-treesitter.configs").setup {
ensure_installed = "maintained",
ignore_install = { "zig" }, -- https://github.com/nvim-treesitter/nvim-treesitter/issues/2049
ensure_installed = "all",
ignore_install = {
"phpdoc", -- https://github.com/nvim-treesitter/nvim-treesitter/issues/2837
"zig", -- https://github.com/nvim-treesitter/nvim-treesitter/issues/2049
},
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
Expand Down

0 comments on commit 7a727b2

Please sign in to comment.