dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit f81f3a3b9da60d5a15385aaa2f1f1158f4a5eb18
parent 68c971cc79c1c23bfdf4248d163dcc0d696202a0
Author: Chris Bracken <chris@bracken.jp>
Date:   Sun, 31 May 2026 10:06:09 +0900

nvim: disable reporting of plugin updates on startup

It's annoying. Do this only on demand.

Diffstat:
M.config/nvim/lua/config/lazy.lua | 11++++-------
1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/.config/nvim/lua/config/lazy.lua b/.config/nvim/lua/config/lazy.lua @@ -21,15 +21,11 @@ require("lazy").setup({ -- import your plugins { import = "plugins" }, }, - -- Configure any other settings here. See the documentation for more details. - -- colorscheme that will be used when installing plugins. - install = { colorscheme = { "solarized-osaka" } }, -- automatically check for plugin updates - checker = { enabled = true }, + checker = { enabled = true, notify = false }, -- disable LuaRocks/hererocks - rocks = { - enabled = false, - }, + rocks = { enabled = false }, +--[[ -- lazy.nvim wants a nerd font installed. I don't. ui = { icons = { @@ -58,4 +54,5 @@ require("lazy").setup({ }, }, }, +--]] })