From 2efc69cc16b2bf0ecd78dbf5dba37ec6f6f0538a Mon Sep 17 00:00:00 2001 From: David JULIEN Date: Fri, 3 Feb 2023 09:18:39 +0100 Subject: [PATCH] [nvim] feat: add TreeSitter parses for C++, Python, LaTeX --- .config/nvim/lua/plugin/treesitter.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.config/nvim/lua/plugin/treesitter.lua b/.config/nvim/lua/plugin/treesitter.lua index 766db28..6b65232 100644 --- a/.config/nvim/lua/plugin/treesitter.lua +++ b/.config/nvim/lua/plugin/treesitter.lua @@ -11,7 +11,9 @@ return { }, build = ":TSUpdate", opts = { - ensure_installed = { "c", "lua", "rust", "bash", "vim" }, + ensure_installed = { + "c", "cpp", "lua", "rust", "bash", "vim", "latex", "python", + }, highlight = { enable = true, },