better config structure

This commit is contained in:
siduck76
2021-05-05 06:51:04 +05:30
parent 03e78be718
commit 503dc5b1c8
15 changed files with 20 additions and 22 deletions

19
lua/treesitter-nvim.lua Normal file
View File

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