Minor Tweaks

This commit is contained in:
voidarclabs
2025-05-03 12:33:11 +01:00
parent 82dc4c4230
commit 778529316e
4 changed files with 43 additions and 14 deletions

View File

@@ -0,0 +1,12 @@
return {
"nvim-treesitter/nvim-treesitter",
run = ":TSUpdate",
config = function()
require("nvim-treesitter.configs").setup({
ensure_installed = { "javascript", "lua", "python", "html", "css", "typescript", "rust" }, -- Add JavaScript here
highlight = {
enable = true, -- Enable syntax highlighting
},
})
end,
}