mirror of
https://github.com/agresdominik/dotfiles.git
synced 2026-04-21 18:05:50 +00:00
17 lines
458 B
Lua
17 lines
458 B
Lua
require("nvim-treesitter.configs").setup({
|
|
ensure_installed = {
|
|
-- Programming Languages
|
|
"lua", "python", "bash", "javascript", "typescript",
|
|
"go", "java", "c", "cpp", "c_sharp", "rust",
|
|
|
|
-- Web Languages
|
|
"html", "css", "scss", "json", "yaml", "toml", "xml",
|
|
|
|
-- Other formats
|
|
"markdown", "markdown_inline", "sql", "dockerfile", "gitignore"
|
|
},
|
|
highlight = { enable = true },
|
|
indent = { enable = true },
|
|
})
|
|
|