mirror of
https://github.com/Stunkymonkey/dotfiles.git
synced 2026-01-29 09:23:02 +01:00
15 lines
228 B
Lua
15 lines
228 B
Lua
-- [[ Configure Treesitter ]]
|
|
-- See `:help nvim-treesitter`
|
|
require('nvim-treesitter').install({
|
|
"bash",
|
|
"comment",
|
|
"json",
|
|
"lua",
|
|
"markdown_inline",
|
|
"markdown",
|
|
"python",
|
|
"rust",
|
|
"vim",
|
|
"yaml",
|
|
"zsh",
|
|
})
|