An open API service indexing awesome lists of open source software.

https://github.com/wsdjeg/repl.nvim


https://github.com/wsdjeg/repl.nvim

neovim-plugin

Last synced: 25 days ago
JSON representation

Awesome Lists containing this project

README

        

# repl.nvim

## installation

use your favorite plugin manager, for example: [nvim-plug](https://github.com/wsdjeg/nvim-plug)

```lua
require('plug').add({
{
'wsdjeg/repl.nvim',
config = function()
require('repl').setup({
executables = {
lua = 'lua',
},
})
end,
depends = {
{ 'wsdjeg/job.nvim' },
},
},
})
```