initial commit

This commit is contained in:
siduck76 2021-03-07 19:52:30 +05:30
parent 9c1b47cc8b
commit 78152fa48c
11 changed files with 649 additions and 0 deletions
lua/treesitter

13
lua/treesitter/lua.lua Normal file
View file

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