presenting.nvim is a neovim plugin that turns your markup files into
slides (in neovim).
It is rewrite of
presenting.vim in lua. It
simplifies the code (and removes some features). presenting.vim is a
clone of present.vim which is a
clone of presen.vim.
With presenting.nvim installed and configured (see section below) open
a markdown/org/adoc file, then start the presentation using global
Presenting lua object:
:lua Presenting.toggle()
or using the Presenting user command:
:Presenting
Then navigate the presentation with the keys:
-
q: quit presentation mode
-
n: next slide
-
p: previous slide
-
f: first slide
-
l: last slide
This README is intentionally short. For more information, see
:help presenting.nvim and the
documentation.
With lazy.nvim:
return {
"sotte/presenting.nvim",
opts = {
-- fill in your options here
-- see :help Presenting.config
},
cmd = { "Presenting" },
}😎 Directly start a presentation from the CLI:
nvim -c Presenting README.md
nvim -c Presenting README.org
nvim -c Presenting README.adoc🔬 Zoom in with your terminal emulator to make the slides bigger.
