1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2024-09-20 09:32:39 +00:00
dotfiles/.config/nvim/lua/plugins/treesitter.lua

38 lines
489 B
Lua
Raw Normal View History

2023-04-12 18:09:30 +00:00
require("nvim-treesitter.configs").setup({
2023-04-09 16:13:55 +00:00
ensure_installed = {
"bash",
2024-04-13 17:03:34 +00:00
"diff",
2023-04-09 16:13:55 +00:00
"go",
"gomod",
"gowork",
2024-05-02 15:42:25 +00:00
"java",
"javascript",
2023-04-09 16:13:55 +00:00
"json",
2024-05-02 15:42:25 +00:00
"kotlin",
"lua",
"make",
"markdown",
"markdown_inline",
"python",
"regex",
"sql",
"terraform",
"tsx",
"typescript",
"vim",
"vimdoc",
2023-04-09 16:13:55 +00:00
"yaml",
},
2022-10-01 11:46:18 +00:00
highlight = {
2022-10-08 10:44:11 +00:00
enable = true,
disable = { "css" },
2022-10-01 11:46:18 +00:00
},
autopairs = {
enable = true,
},
2023-04-09 16:13:55 +00:00
indent = {
enable = true,
disable = { "python", "css" },
},
2022-10-01 11:46:18 +00:00
})