We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48ef0a5 commit 73f06dbCopy full SHA for 73f06db
nvim/lua/config/lazy.lua
@@ -22,7 +22,10 @@ require("lazy").setup({
22
-- colorscheme that will be used when installing plugins.
23
install = { colorscheme = { "onedark" } },
24
-- automatically check for plugin updates
25
- checker = { enabled = true },
+ checker = {
26
+ enabled = true,
27
+ notify = false,
28
+ },
29
-- disable luarocks
30
rocks = { enabled = false },
31
})
nvim/lua/plugins/treesitter.lua
@@ -2,6 +2,9 @@ return {
2
'nvim-treesitter/nvim-treesitter',
3
lazy = false,
4
build = ':TSUpdate',
5
+ cond = function()
6
+ return vim.fn.executable 'tree-sitter' == 1
7
+ end,
8
config = function()
9
require("config.treesitter")
10
end,
0 commit comments