Update treesitter.lua

`nvim-treesitter` deprecated `maintained` https://github.com/nvim-treesitter/nvim-treesitter/pull/2809.

This adds a list of languages instead. 

Fixes #130
pull/131/head
Joe Previte 3 years ago committed by GitHub
parent 21877b4ced
commit 2b1816417f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -4,7 +4,7 @@ if not status_ok then
end end
configs.setup { configs.setup {
ensure_installed = "maintained", -- one of "all", "maintained" (parsers with maintainers), or a list of languages ensure_installed = { "lua", "rust", "typescript" }, -- one of "all" or a list of languages (https://github.com/nvim-treesitter/nvim-treesitter#supported-languages)
sync_install = false, -- install languages synchronously (only applied to `ensure_installed`) sync_install = false, -- install languages synchronously (only applied to `ensure_installed`)
ignore_install = { "" }, -- List of parsers to ignore installing ignore_install = { "" }, -- List of parsers to ignore installing
autopairs = { autopairs = {

Loading…
Cancel
Save