Update .config/nvim/lua/plugins/syntax.lua
This commit is contained in:
parent
32746a3db7
commit
1518ffc851
1 changed files with 21 additions and 11 deletions
|
@ -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 = {},
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue