Initial commit.

This commit is contained in:
Dan Chadwick
2024-03-03 18:01:30 -05:00
commit 914f9ea767
15 changed files with 403 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = { "php", "lua", "vim", "javascript", "html", "yaml" },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end
}