improve config structure

This commit is contained in:
siduck76
2021-07-09 09:14:04 +05:30
parent e219b04e82
commit c6084220de
18 changed files with 485 additions and 449 deletions

View File

@@ -0,0 +1,25 @@
local M = {}
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