A minimalist Neovim plugin for presenting markdown slides. You can start presenting with :PresentStart
.
Add the following configuration to use present.nvim
. Use these keybindings during your presentation:
Key | Description |
---|---|
n |
Move to the next slide |
p |
Move to the previous slide |
q |
Quit the presentation |
X |
Execute the first code block |
? |
Show all available keybindings |
Installation using Lazy.nvim
{
"flokkq/present.nvim",
version = "v0.2.0",
}
Installation using Packer.nvim
use {
"flokkq/present.nvim",
tag = "v0.2.0",
}
Installation using vim-plug
Plug 'flokkq/present.nvim'