Antoine Cotten

Results 297 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...

While I agree that the ultimate goal of a colorscheme is to make things on screen look as homogeneous as possible, I think that adding facilities for configuring external plugins...

It seems similar, although there could be valid cases for wanting to attach to a local delve server using the `remote` mode but without defining a host and/or port, so...