From f67da71f2a4ff455ddaf4844722bd55f2c5a9eef Mon Sep 17 00:00:00 2001 From: Yuto Tanaka Date: Fri, 15 Mar 2024 23:41:20 +0900 Subject: [PATCH] Fix packer.nvim style example config miss --- README.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.adoc b/README.adoc index 762c5d9b..044cd48a 100644 --- a/README.adoc +++ b/README.adoc @@ -153,7 +153,7 @@ require('jetpack.packer').startup(function(use) run = ':TSUpdate', config = function() require'nvim-treesitter.configs'.setup { - ensure_installed = 'maintained', + ensure_installed = { "c", "lua", "vim", "vimdoc", "query" }, highlight = { enable = true } } end @@ -181,7 +181,7 @@ require('jetpack.packer').add { run = ':TSUpdate', config = function() require'nvim-treesitter.configs'.setup { - ensure_installed = 'maintained', + ensure_installed = { "c", "lua", "vim", "vimdoc", "query" }, highlight = { enable = true } } end