1
0
Fork 0
mirror of https://github.com/CompeyDev/my-nvim-setup.git synced 2025-04-18 12:33:44 +01:00
my-nvim-setup/lua/treesitter/lua.lua
2021-04-20 09:45:14 +05:30

19 lines
346 B
Lua

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