1
0
mirror of https://codeberg.org/diginaut/dotfiles.git synced 2026-02-04 06:40:25 +01:00

Codeblock syntax highlighting

This commit is contained in:
2026-01-21 11:11:34 +01:00
parent 7c5962f7f3
commit f9afaad121

View File

@@ -2,4 +2,22 @@ return {
"nvim-treesitter/nvim-treesitter", "nvim-treesitter/nvim-treesitter",
lazy = false, lazy = false,
build = ":TSUpdate", build = ":TSUpdate",
config = function()
require("nvim-treesitter.configs").setup({
ensure_installed = {
"c",
"lua",
"vim",
"vimdoc",
"query",
"markdown",
"markdown_inline",
"bash",
"javascript",
"toml",
},
auto_install = false,
-- ...
})
end,
} }