README.md
April 1, 2026 ยท View on GitHub
๐ป feed.nvim
feed.nvim is a web feed reader in Neovim.
Warning
This project is young, expect breaking changes
๐ Features
- ๐ฒ Fast and reliable rss/atom/json feed feed parsing, powered by tree-sitter
- ๐ View entries as beautiful markdown powered by pandoc
- ๐ช Lua database with no extra dependency
- ๐ Powerful entry searching by date, tag, feed, regex, and full text
- ๐ OPML support to import and export all your feeds and podcasts
- ๐งก RSShub integration to discover and track everything
- :octocat: Github integration to subscribe to the new commits/release of your favorite repo/plugin
- ๐ถ HTMX + libuv powered minimal web interface
- WIP ๐ก support for popular feed sync services like Tiny Tiny RSS and Fresh RSS
๐ Installation
Requirements
Optional Dependencies
- For feed greping:
- For interactive feed searching:
- For markdown rendering:
- For image rendering:
Basic Installation
For rocks.nvim:
:Rocks install feed.nvim
For lazy.nvim:
return {
"neo451/feed.nvim",
cmd = "Feed",
---@module 'feed'
---@type feed.config
opts = {},
}
Further Steps
- Run
:checkhealth feedto see your installation status - Read documentation or
:h feed.txt - To troubleshoot without conflict from other plugins or you config, copy minimal.lua locally, and run
nvim --clean -u minimal.lua