2021-03-07 19:52:30 +05:30
|
|
|
local ts_config = require("nvim-treesitter.configs")
|
|
|
|
|
|
|
|
ts_config.setup {
|
2021-03-13 06:53:02 +05:30
|
|
|
ensure_installed = {
|
|
|
|
"javascript",
|
|
|
|
"html",
|
|
|
|
"css",
|
|
|
|
"bash",
|
2021-04-20 09:45:14 +05:30
|
|
|
"lua",
|
2021-04-25 11:57:24 +05:30
|
|
|
"json",
|
|
|
|
"python"
|
2021-03-13 06:53:02 +05:30
|
|
|
},
|
|
|
|
highlight = {
|
|
|
|
enable = true,
|
|
|
|
use_languagetree = true
|
|
|
|
}
|
2021-03-07 19:52:30 +05:30
|
|
|
}
|