This commit is contained in:
asep komarudin 2023-02-20 09:25:28 +07:00
parent a476e51b92
commit f9c476b034
3 changed files with 26 additions and 2 deletions

View file

@ -1,4 +1,8 @@
require("nvim-treesitter.configs").setup({
local status_ok, configs = pcall(require, "nvim-treesitter.configs")
if not status_ok then
return
end
configs.setup({
ignore_install = { "phpdoc" }, -- List of parsers to ignore installing
highlight = {
enable = true,