mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
32 lines
573 B
Lua
32 lines
573 B
Lua
-- Nvim Treesitter configurations
|
|
-- https://github.com/nvim-treesitter/nvim-treesitter
|
|
return {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
depencendies = {
|
|
"nvim-treesitter/playground",
|
|
},
|
|
cond = vim.g.vscode == nil,
|
|
opts = {
|
|
indent = { enable = false },
|
|
ensure_installed = {
|
|
"astro",
|
|
"bash",
|
|
"css",
|
|
"vimdoc",
|
|
"html",
|
|
"javascript",
|
|
"json",
|
|
"lua",
|
|
"markdown",
|
|
"markdown_inline",
|
|
"python",
|
|
"query",
|
|
"regex",
|
|
"tsx",
|
|
"typescript",
|
|
"vim",
|
|
"yaml",
|
|
},
|
|
},
|
|
}
|