--[[ Loads setup settings for nvim-treesitter plugin --]] require('nvim-treesitter.configs').setup { ensure_installed = 'all', -- installed parser sync_install = false, -- don't install parsers synchronously auto_install = false, -- install missing parsers when entering --buffer highlight = { enable = true, -- enable highlighting } }