fix(highlight): handle nil Normal.bg in blending logic (#175)

Co-authored-by: Barrett Ruth <br.barrettruth@gmail.com>
This commit is contained in:
Tristan Knight 2026-03-08 01:49:26 +00:00 committed by GitHub
parent 595c35d910
commit 53dd5d6325
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 98 additions and 3 deletions

View file

@ -68,10 +68,26 @@ body:
load(vim.fn.system('curl -s https://raw.githubusercontent.com/folke/lazy.nvim/main/bootstrap.lua'))()
require('lazy.nvim').setup({
spec = {
'tpope/vim-fugitive',
{ 'barrettruth/midnight.nvim', lazy = false, config = function() vim.cmd.colorscheme('midnight') end },
{ 'tpope/vim-fugitive' },
{ 'NeogitOrg/neogit', dependencies = { 'nvim-lua/plenary.nvim' } },
{ 'lewis6991/gitsigns.nvim', config = true },
{ 'rhysd/committia.vim' },
{ 'nvim-telescope/telescope.nvim', dependencies = { 'nvim-lua/plenary.nvim' } },
{
'barrettruth/diffs.nvim',
opts = {},
init = function()
vim.g.diffs = {
debug = '/tmp/diffs.log',
integrations = {
fugitive = true,
neogit = true,
gitsigns = true,
committia = true,
telescope = true,
},
}
end,
},
},
})