aboutsummaryrefslogtreecommitdiff
path: root/lua/config
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2021-08-22 02:08:33 +0800
committerjdhao <jdhao@hotmail.com>2021-08-22 02:08:33 +0800
commit81b6a5e20766c3da131bd43feadff94b0e320e26 (patch)
tree7344c141731e4ff1d65fa24e2e9143eac7c55830 /lua/config
parent008831e5c22d37ee595d926b6a6116e2443a7c25 (diff)
Enable treesitter highlight for Vim script, closes #17
Diffstat (limited to 'lua/config')
-rw-r--r--lua/config/treesitter.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/config/treesitter.lua b/lua/config/treesitter.lua
index 574b763..11721ec 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" },
+ ensure_installed = {"python", "cpp", "lua", "vim"},
ignore_install = {}, -- List of parsers to ignore installing
highlight = {
enable = true, -- false will disable the whole extension