From 3ae5e1e3549078f92617b08258ab2f4e086a8e53 Mon Sep 17 00:00:00 2001 From: jdhao Date: Sun, 22 Aug 2021 15:29:00 +0800 Subject: [PATCH] Remove vim parser for treesitter It is not yet usable: the highlighting is not good compared to regex based highlighting. --- lua/config/treesitter.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/config/treesitter.lua b/lua/config/treesitter.lua index 11721ec..8927317 100644 --- a/lua/config/treesitter.lua +++ b/lua/config/treesitter.lua @@ -1,5 +1,5 @@ require("nvim-treesitter.configs").setup({ - ensure_installed = {"python", "cpp", "lua", "vim"}, + ensure_installed = {"python", "cpp", "lua"}, ignore_install = {}, -- List of parsers to ignore installing highlight = { enable = true, -- false will disable the whole extension