1
0
Fork 0
mirror of https://github.com/CompeyDev/my-nvim-setup.git synced 2025-04-13 10:40:54 +01:00
my-nvim-setup/lua/treesitter-nvim.lua
2021-05-06 22:46:28 +05:30

17 lines
302 B
Lua

local ts_config = require("nvim-treesitter.configs")
ts_config.setup {
ensure_installed = {
"javascript",
"html",
"css",
"bash",
"lua",
"json",
"python"
},
highlight = {
enable = true,
use_languagetree = true
}
}