2021-03-07 15:22:30 +01:00
|
|
|
local ts_config = require("nvim-treesitter.configs")
|
|
|
|
|
|
|
|
ts_config.setup {
|
2021-03-13 02:23:02 +01:00
|
|
|
ensure_installed = {
|
|
|
|
"javascript",
|
|
|
|
"html",
|
|
|
|
"css",
|
|
|
|
"bash",
|
2021-04-20 06:15:14 +02:00
|
|
|
"lua",
|
2021-04-25 08:27:24 +02:00
|
|
|
"json",
|
|
|
|
"python"
|
2021-06-15 18:24:05 +02:00
|
|
|
-- "rust",
|
|
|
|
-- "go"
|
2021-03-13 02:23:02 +01:00
|
|
|
},
|
|
|
|
highlight = {
|
|
|
|
enable = true,
|
|
|
|
use_languagetree = true
|
|
|
|
}
|
2021-03-07 15:22:30 +01:00
|
|
|
}
|