Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 706 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 706 Bytes

reapo.nvim

Goal

Create the best LLM propmpting experience in the terminal.

Ackowledgements

These projects have been used as a reference and inspiration for this project:

Please be sure to give these projects a star!

lazy.nvim

  {
    dir = "~/projects/reapo.nvim",
    lazy = false,
    dependencies = { "nvim-lua/plenary.nvim" },
    config = function()
      require("reapo").setup({
        model = "claude-3-5-sonnet-20241022",
        window_style = "float", -- or "split"
      })
    end,
  },