1
0
Fork 0

rewrite nvim config to lua

Signed-off-by: Lucas Sta Maria <lucas.stamaria@gmail.com>
This commit is contained in:
Lucas Sta Maria 2022-03-20 23:52:02 -04:00
parent 8e420fbf97
commit c293767edf
No known key found for this signature in database
GPG key ID: 4B9481F3C5068E2E
9 changed files with 294 additions and 10 deletions

View file

@ -0,0 +1,35 @@
local ts_config = require("nvim-treesitter.configs")
ts_config.setup {
ensure_installed = {
"bash",
"c",
"cpp",
"css",
"haskell",
"html",
"java",
"javascript",
"json",
"latex",
"lua",
"make",
"markdown",
"ocaml",
"python",
"regex",
"rust",
"scss",
"svelte",
"toml",
"tsx",
"typescript",
"vim",
"vue",
"yaml"
},
highlight = {
enable = true,
use_languagetree = true
}
}