RSSAmplifier

Blog

robin

robinwobin.devRSS feed ↗15 posts

Latest posts

creating a native-feeling neovim picker

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…

site on a zig server

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 userstyles

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 .

ebil tool

i created a really cool and awesome tool for publishing your ebil.club site. you can get the ebil tool from codeberg .

lylla now supports sections

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 .

mimi colorscheme

mimi is a fuzzy & warm colorscheme inspired by june 's cat. mimi is available on codeberg .

aspen plugin

i created a plugin for neovim that simplifies some of the hassles of setting up neovim's builtin completion. github codeberg

artio live mode toggle

you can now toggle between live mode and fuzzy mode in artio! 82db9ac you can get artio from github and codeberg .

artio released!

ive been working on a extui fuzzy finder for neovim that uses nightly's new ui components. its available on github and codeberg .

tending your editor config: building sylvee & lynn

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…

evergarden for sublime

evergarden is now available for sublime text. simply install it using package control.

evergarden palette now on npm

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 (…

evergarden site is live

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)

creating a colorscheme

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…

building this site

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…