diff options
| author | Thomas Schmucker <ts@its1.de> | 2026-01-27 22:03:27 +0100 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2026-01-27 22:03:27 +0100 |
| commit | 2a99f860a8d2bfc9c0ce606829a3e2379fe9008c (patch) | |
| tree | 53505ed8b22438249caa716b9df3e13471923254 /nvim/lua/config | |
| parent | 62af7cfffa87bb07f452666aba5c2c0a4cbe5756 (diff) | |
| download | dotfiles-2a99f860a8d2bfc9c0ce606829a3e2379fe9008c.tar.gz dotfiles-2a99f860a8d2bfc9c0ce606829a3e2379fe9008c.tar.bz2 dotfiles-2a99f860a8d2bfc9c0ce606829a3e2379fe9008c.zip | |
Neovim: Hinweismeldungen für Plugin-Updates weniger nervig
Diffstat (limited to 'nvim/lua/config')
| -rw-r--r-- | nvim/lua/config/lazy.lua | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/nvim/lua/config/lazy.lua b/nvim/lua/config/lazy.lua index c798b9d..edf2fc7 100644 --- a/nvim/lua/config/lazy.lua +++ b/nvim/lua/config/lazy.lua | |||
| @@ -7,7 +7,7 @@ if not (vim.uv or vim.loop).fs_stat(lazypath) then | |||
| 7 | if vim.v.shell_error ~= 0 then | 7 | if vim.v.shell_error ~= 0 then |
| 8 | vim.api.nvim_echo({ | 8 | vim.api.nvim_echo({ |
| 9 | { "Failed to clone lazy.nvim:\n", "ErrorMsg" }, | 9 | { "Failed to clone lazy.nvim:\n", "ErrorMsg" }, |
| 10 | { out, "WarningMsg" }, | 10 | { out, "WarningMsg" }, |
| 11 | { "\nPress any key to exit..." }, | 11 | { "\nPress any key to exit..." }, |
| 12 | }, true, {}) | 12 | }, true, {}) |
| 13 | vim.fn.getchar() | 13 | vim.fn.getchar() |
| @@ -21,7 +21,10 @@ require("lazy").setup({ | |||
| 21 | { import = "plugins" }, | 21 | { import = "plugins" }, |
| 22 | }, | 22 | }, |
| 23 | checker = { | 23 | checker = { |
| 24 | enabled = true | 24 | enabled = true, |
| 25 | notify = false, | ||
| 26 | frequency = 86400, -- Sekunden (1 Tag) | ||
| 27 | log = true, | ||
| 25 | }, | 28 | }, |
| 26 | rocks = { | 29 | rocks = { |
| 27 | enabled = false, | 30 | enabled = false, |
