Simple presentations of markdown files inside Neovim.
- Opinionated.
- Only one presentation at a time.
- Open a tab to iterate over a directory's markdown files.
gn
andgp
local mappings to go to next and go to previous slide.
nvim >= 0.10
.
Use your favorite plugin manager!
{
'pablos123/present.nvim',
config = function() require 'present-nvim'.setup {} end
}
Start a presentation for the parent directory of the current open file.
:lua Present.start()
Stop the current presentation.
:lua Present.stop()
Go to the next slide.
:lua Present.next_slide()
Go to the previous slide.
:lua Present.previous_slide()