A Neovim plugin skeleton designed to accelerate your writing workflow.
Use your favorite plugin manager, for example with lazy.nvim:
{
'yourname/SpeedWriter',
config = function()
require('speedwriter').setup()
end
}After installation, run :SpeedWriterHello to ensure the plugin is working. You
should see a friendly greeting in Neovim's command area.
Feel free to open issues or submit pull requests to help improve this plugin skeleton.
The test suite relies on plenary.nvim
and Neovim's headless test runner. Clone plenary.nvim inside the tests directory:
git clone https://github.com/nvim-lua/plenary.nvim.git tests/plenary.nvimThen execute the tests:
nvim --headless -c "PlenaryBustedDirectory tests {minimal_init = 'tests/minimal_init.lua'}"