
Neovim, e/plugins
684 posts

Neovim, e/plugins
@Neovim
Posts refer to Nvim 0.13 (dev build). Discuss usage/config/ideas at: https://t.co/mfM6kFnSfE



Firenvim by Ghjuvan Lacambre embeds Neovim in your web browser. Yes, it really works. Demo by @justinmk : youtube.com/watch?v=suvh0y…










What's the best ai-assisted coding setup in neovim? Need to seamlessly mix writing code by hand, agentic work, diff review, and file browsing.


the vim.ui.img API for displaying images is now merged to @Neovim master. the result is a nice simple interface, despite a lot of pull in the other direction. idk why, but somehow these PRs for new modules always start with the most insanely complex implementations, instead of asking "what are the primitives that we absolutely need", and leaving the rest for later. this PR started with: - support for sixel, iterm2, kitty - new "provider" layer - async support?? - different concepts and "address spaces" for placement vs data and it ended with: -- Create: local id = vim.ui.img.set(…) -- Update: vim.ui.img.set(id, { row = 8, col = 12 }) -- Get: local opts = vim.ui.img.get(id) -- Delete: vim.ui.img.del(id) yeah, an LLM would have been fine (ecstatic!!) with rev1. think about that.










