almost everything
This commit is contained in:
24
lua/plugins/completion/treesitter.lua
Normal file
24
lua/plugins/completion/treesitter.lua
Normal file
@@ -0,0 +1,24 @@
|
||||
vim.pack.add({ { src = "https://github.com/nvim-treesitter/nvim-treesitter", name = "treesitter" } })
|
||||
|
||||
require("nvim-treesitter").setup({
|
||||
highlight = { enable = true },
|
||||
indent = { enable = true },
|
||||
})
|
||||
|
||||
require("nvim-treesitter").install({
|
||||
"bash",
|
||||
"html",
|
||||
"latex",
|
||||
"javascript",
|
||||
"json",
|
||||
"lua",
|
||||
"markdown",
|
||||
"markdown_inline",
|
||||
"query",
|
||||
"regex",
|
||||
"tsx",
|
||||
"typescript",
|
||||
"python",
|
||||
"vim",
|
||||
"yaml",
|
||||
})
|
||||
Reference in New Issue
Block a user