dotfiles-mirror/config/nvim/lua/plugins/treesitter/init.lua
coast 78e2285e54 Big nvim changes, change theme to catppuccin mocha on waybar, sway, and
mako, and move etc/ files to /, removing etc
2025-11-01 21:01:51 +03:30

10 lines
234 B
Lua

local ts = require("nvim-treesitter.configs")
ts.setup({
ensure_installed = { "c", "cpp", "lua", "go", "gomod", "gowork", "gosum", "rust", "python" },
auto_install = true,
sync_install = true,
highlight = {
enable = true
}
})