Use lazy.nvim

This commit is contained in:
Saeed Afzal
2023-04-29 12:34:36 +01:00
parent 17ab6018fb
commit 86cc9b52ec
28 changed files with 308 additions and 493 deletions

View File

@@ -0,0 +1,15 @@
return {
"nvim-treesitter/nvim-treesitter",
dependencies = { "windwp/nvim-ts-autotag", "JoosepAlviste/nvim-ts-context-commentstring" },
build = ":TSUpdate",
config = function()
require("nvim-treesitter.configs").setup {
highlight = { enable = true },
incremental_selection = { enable = true },
indent = { enable = true },
autotag = { enable = true },
context_commentstring = { enable = true, enable_autocmd = false },
matchup = { enable = true }
}
end
}