Antoine Cotten

Results 295 comments of Antoine Cotten

Fully agree. In fact, we need to rethink the versioning entirely in this repo; breaking changes have been pushed without proper versioning so we'd better stay at revision 0.x.y for...

That looks truly horrendous 😅 Thanks for reporting 👍

Before I try this myself, how does it look with this naive customization applied? ```lua -- init.lua (Neovim) -- Apply custom highlights on colorscheme change. -- Must be declared before...

My bad. What about this then? ```lua vim.api.nvim_create_autocmd('ColorScheme', { group = vim.api.nvim_create_augroup('custom_highlights_everforest', {}), pattern = 'everforest', command = 'hi link GitConflictCurrent DiffChange' }) ```

It's unfortunate that the plugin defaults to `DiffText`, because `GitConflictCurrentLabel` is derived from that highlight group by tinting the background color, and Everforest's `DiffText` background is just too bright in...