Split config according to new example

This commit is contained in:
2023-03-17 14:49:56 +02:00
parent df9530784f
commit c0b5f25b7c
13 changed files with 415 additions and 454 deletions

35
plugins/treesitter.lua Normal file
View File

@@ -0,0 +1,35 @@
return {
"nvim-treesitter/nvim-treesitter",
opts = {
ensure_installed = {
"help",
"bash",
"c",
"cmake",
"comment",
"diff",
"dockerfile",
"gitignore",
"graphql",
"html",
"javascript",
"json",
"json5",
"latex",
"lua",
"markdown",
"php",
"phpdoc",
"python",
"scss",
"sql",
"terraform",
"todotxt",
"toml",
"typescript",
"vim",
"vue",
"yaml",
},
},
}