Results 16 comments of luisiacc

Would love to see this happend! ✈ @Kethku any news? I absolutely love this program, with this feature I will finally be able to use it for all projects.

I guess this is already done right? via what @sarmong mentioned, https://github.com/jose-elias-alvarez/null-ls.nvim

@kaiuri I'm interested on what you meant by this: > @SystematicError yes you can, just add your custom colors to a syntax file appending to COQ's own syntax file

@MultisampledNight is it possible to do something [like `wezterm`](https://wezfurlong.org/wezterm/config/fonts.html), where all the font rendering capabilities are exposed as settings, some fonts work better with hinting, some without, and it's the...

Yeah there is not much options, although I think with the ability to change only this 3 options, it could go a long way: ```rust ... skia_font.set_subpixel(true); skia_font.set_hinting(FontHinting::Full); skia_font.set_edging(Edging::AntiAlias); ......

I just changed `FontHinting::Full` to `FontHinting::None` and built from source, and my font (SF Mono) looks much better, but this does not apply to all fonts, therefore the need for...

To anyone visiting this thread, try building from source with this change on `src/renderer/fonts/font_loader.rs#21`: from ```rust skia_font.set_hinting(FontHinting::Full); skia_font.set_edging(Edging::AntiAlias); ``` to ```rust skia_font.set_hinting(FontHinting::None); skia_font.set_edging(Edging::SubpixelAntiAlias); ``` Again, this doesn't look good on...

Hy @AdrienLemaire , did you find a fix for this?