Skip to content

Latest commit

 

History

History
43 lines (35 loc) · 782 Bytes

File metadata and controls

43 lines (35 loc) · 782 Bytes

present.nvim

Simple presentations of markdown files inside Neovim.

Features

  • Opinionated.
  • Only one presentation at a time.
  • Open a tab to iterate over a directory's markdown files.
  • gn and gp local mappings to go to next and go to previous slide.

Dependencies

  • nvim >= 0.10.

Install

Use your favorite plugin manager!

lazy.nvim

{
    'pablos123/present.nvim',
    config = function() require 'present-nvim'.setup {} end
}

Available functions

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()