Files
dotconfs/.config
thomas.koppandClaude Opus 5 3d1a8da9ef fix(nvim): make the colorscheme optional
Every nvim start on shron printed

  E185: Cannot find color scheme 'gruvbox'

because gruvbox is a vim-plug plugin and :PlugInstall has never run there - the
plugged directory does not exist at all. The config is checked out on all three
machines, so it cannot assume the plugins are present.

silent! is the idiomatic answer: the theme loads where it exists and is skipped
where it does not. The airline settings below need no such treatment; they are
plain variable assignments and are simply ignored when the plugin is absent.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-08 22:45:53 +02:00
..