Update .config/nvim/lua/plugins/syntax.lua

This commit is contained in:
Anthony Rodriguez 2024-08-15 00:22:23 +02:00
parent 32746a3db7
commit 1518ffc851
Signed by: nezia
GPG key ID: EE3BE97C040A86CE

View file

@ -1,14 +1,24 @@
return { return {
"nvim-treesitter/nvim-treesitter", {
build = ":TSUpdate",
config = function()
local configs = require("nvim-treesitter.configs")
configs.setup({ "nvim-treesitter/nvim-treesitter",
ensure_installed = { "c", "lua", "vim", "vimdoc", "query", "elixir", "heex", "javascript", "html", "go" }, build = ":TSUpdate",
sync_install = false, config = function()
highlight = { enable = true }, local configs = require("nvim-treesitter.configs")
indent = { enable = true },
}) configs.setup({
end ensure_installed = { "c", "lua", "vim", "vimdoc", "query", "elixir", "heex", "javascript", "html", "go" },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end
},
{
"lukas-reineke/indent-blankline.nvim",
main = "ibl",
---@module "ibl"
---@type ibl.config
opts = {},
}
} }