mirror of
https://github.com/Stunkymonkey/dotfiles.git
synced 2026-01-29 01:13:01 +01:00
16 lines
228 B
Lua
16 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",
|
||
|
|
})
|