From 19f1820a2aa790fd55625a3e9b2a8b75abfcd5a9 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 12 Jul 2022 10:50:48 +0100 Subject: [PATCH] fix(nvim): fix treesitter error Change from the old `maintained` value to `all` for now, and later specify a list of which languages I want to use. --- roles/neovim/files/after/plugin/treesitter.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/neovim/files/after/plugin/treesitter.lua b/roles/neovim/files/after/plugin/treesitter.lua index 3b0f2a6..52a1dd5 100644 --- a/roles/neovim/files/after/plugin/treesitter.lua +++ b/roles/neovim/files/after/plugin/treesitter.lua @@ -7,7 +7,8 @@ configs.setup { context_commenting = { enable = true, }, - ensure_installed = "maintained", + -- TODO: specify which languages to install. + ensure_installed = "all", highlight = { enable = true, },