Updated install.bat
tried to mess with treesitter
This commit is contained in:
@@ -2,10 +2,16 @@ 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" },
|
||||
ensure_installed = { "c", "cpp", "lua", "vim", "vimdoc", "cmake", "query" },
|
||||
sync_install = false,
|
||||
highlight = { enable = true },
|
||||
indent = { enable = true },
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
vim.cmd("syntax on")
|
||||
vim.cmd("set expandtab")
|
||||
vim.cmd("set tabstop=4")
|
||||
vim.cmd("set softtabstop=4")
|
||||
|
||||
Reference in New Issue
Block a user