preface Fuzzy searching in neovim has been a heavily debated topic for years. There were those we fought for telescope being merged into core (which fortunately did not happen), and those who felt that fuzzy picking is not a necessity. I've always felt that a general picker framework is an important core component of neovim - the same could be said for a file tree but that is not what this…
ive been working on a minimal http server to host the static site contents on. this is mostly because i want to get better at zig and thought itd be a fun challenge :) it currently supports embedding the static files and a tiny virtual filesystem. i might expand it to support templates & generation and take more work off zola.
evergarden is now available as a userstyle!! i created a small patcher for the catppuccin userstyles repo with the help of their lead maintainer, @uncenter . this allows us to use their amazing userstyles with evergarden colors! the userstyles are available on github and codeberg .
lylla now supports sections for statusline components. 3bf7259 this uses a pr that has just been merged to nightly. #37153 this feature was initially requested by me :) #35806 lylla is available on github and codeberg .
if you're like me and love configuring your neovim setup, you might reach a point of customization where the different plugins you're using start holding you back: different ui or keybinds start fighting eachother and keeping track of lazy-loading for every plugin becomes unmanageable. most of the time you'll think to yourself that your setup has become too big and surely if you just restart from…
you can install the evergarden palette as an npm package: @everviolet/palette here’s how to bring the garden into your stylesheets: /* if you have it installed with a package manager & a css loader configured */ @ import " @everviolet/palette/css/fall.css " ; /* alternatively via unpkg */ @ import url ( " https://unpkg.com/@everviolet/palette/css/fall.css " ) ; . button { background-color : var (…
the little garden's grown a bit! the official evergarden theme site is now available - you can now browse the palette, read about the project, and find ports for your applications all in one comfy place. take a peek here: evergarden.moe (more updates, ease of use for developers, and mossy surprises coming soon)
ever since I started using open source applications and code editors I got sucked into the magic of syncing the themes of my different applications. there's just something amazing about having all your applications using the same styles and colors. naturally I got inspired by the thousands of colorschemes out there and created my own, and then my next one, and then my next one. I have to admit…
static site generation while looking for a static site generator for my site i tried a few interesting tools, like hugo and astro. i even tried building my own ssg (which failed miserably). in the end i discovered zola, simple static site generator written in rust. zola uses tera templates to build sites with minimal effort. zola separates content from templates. where markdown files can specify…