lazy loading : treesitter

This commit is contained in:
siduck76
2021-06-25 21:36:13 +05:30
parent 7464358bbf
commit 922089fc07
3 changed files with 33 additions and 21 deletions

View File

@@ -1,19 +1,25 @@
local ts_config = require("nvim-treesitter.configs")
local M = {}
ts_config.setup {
ensure_installed = {
"javascript",
"html",
"css",
"bash",
"lua",
"json",
"python"
-- "rust",
-- "go"
},
highlight = {
enable = true,
use_languagetree = true
M.config = function()
local ts_config = require("nvim-treesitter.configs")
ts_config.setup {
ensure_installed = {
"javascript",
"html",
"css",
"bash",
"lua",
"json",
"python"
-- "rust",
-- "go"
},
highlight = {
enable = true,
use_languagetree = true
}
}
}
end
return M