inlyne.nvim is a simple neovim plugin wrapper around the inlyne markdown viewer tool.
https://github.com/user-attachments/assets/35738769-763b-4def-b87f-dc100ea1f65e
cargo install inlyne or pre-built binary )Install the plugin with your package manager of choice
{
"rogue-87/inlyne.nvim",
-- some optional keymaps
--[[ keys = {
{ "<leader>ie", "<cmd>Inlyne enable<cr>", desc = "Enable Inlyne" },
{ "<leader>id", "<cmd>Inlyne disable<cr>", desc = "Disable Inlyne" },
{ "<leader>it", "<cmd>Inlyne toggle<cr>", desc = "Toggle Inlyne" },
}, ]]
opts = {},
}
[!important] Make sure to run
:checkhealth inlyneif something isn't working properly
---@class Inlyne.Config
---@field bin string
---@field debounce_ms integer
local default_config = {
bin = "inlyne", -- must be available in PATH
debounce_ms = 200, -- delay in milliseconds for live preview updates
}
Inlyne enable : starts inlyne
Inlyne disable : stops inlyne
Inlyne toggle: toggles inlyne