mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 00:49:01 +02:00
update
This commit is contained in:
parent
2d90e0f1c8
commit
aa1e7ce0fc
1 changed files with 11 additions and 7 deletions
|
@ -28,14 +28,18 @@ return {
|
||||||
"TSUpdate",
|
"TSUpdate",
|
||||||
"TSUpdateSync",
|
"TSUpdateSync",
|
||||||
},
|
},
|
||||||
-- build = function()
|
build = function()
|
||||||
-- local status_ok, ts = pcall(require, "nvim-treesitter.install")
|
local status_ok, ts = pcall(require, "nvim-treesitter.install")
|
||||||
-- if not status_ok then
|
if not status_ok then
|
||||||
-- return
|
return
|
||||||
-- end
|
end
|
||||||
-- ts.update({ with_sync = true })()
|
ts.update({ with_sync = true })()
|
||||||
-- end,
|
end,
|
||||||
config = function()
|
config = function()
|
||||||
|
local status_ok, _ = pcall(require, "nvim-treesitter")
|
||||||
|
if not status_ok then
|
||||||
|
return
|
||||||
|
end
|
||||||
require("user.treesitter")
|
require("user.treesitter")
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue