initial commit

This commit is contained in:
aminnairi
2023-04-09 00:48:29 +02:00
commit 1e64fe69be
82 changed files with 6976 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
return {
"nvim-treesitter/nvim-treesitter",
dependencies = {
"windwp/nvim-ts-autotag",
"JoosepAlviste/nvim-ts-context-commentstring",
},
event = "User AstroFile",
cmd = {
"TSBufDisable",
"TSBufEnable",
"TSBufToggle",
"TSDisable",
"TSEnable",
"TSToggle",
"TSInstall",
"TSInstallInfo",
"TSInstallSync",
"TSModuleInfo",
"TSUninstall",
"TSUpdate",
"TSUpdateSync",
},
build = ":TSUpdate",
opts = {
highlight = { enable = true },
incremental_selection = { enable = true },
autotag = { enable = true },
context_commentstring = { enable = true, enable_autocmd = false },
},
config = require "plugins.configs.nvim-treesitter",
}