1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

Enable treesitter highlight for Vim script, closes #17

This commit is contained in:
jdhao 2021-08-22 02:08:33 +08:00
parent 008831e5c2
commit 81b6a5e207

View File

@ -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