Files
wmcv-nvim-config/nvim/lua/plugins/treesitter.lua
William McVicar 0643da425f Add LSP stuff
2024-01-08 00:07:57 +01:00

21 lines
615 B
Lua

return {
-- "nvim-treesitter/nvim-treesitter",
-- build = ":TSUpdate",
-- config = function()
-- local install = require("nvim-treesitter.install")
-- local configs = require("nvim-treesitter.configs")
-- install = {
-- compilers = { clang },
-- prefer_git = false,
-- }
-- configs.setup({
-- ensure_installed = { "c", "cpp", "lua", "vim", "vimdoc", "cmake", "query" },
-- sync_install = false,
-- highlight = { enable = true },
-- indent = { enable = true },
-- })
-- end
}