https://github.com/wsdjeg/repl.nvim
https://github.com/wsdjeg/repl.nvim
neovim-plugin
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/wsdjeg/repl.nvim
- Owner: wsdjeg
- Created: 2025-03-04T13:03:00.000Z (2 months ago)
- Default Branch: master
- Last Pushed: 2025-04-02T08:11:41.000Z (about 2 months ago)
- Last Synced: 2025-04-02T08:29:40.629Z (about 2 months ago)
- Topics: neovim-plugin
- Language: Lua
- Homepage:
- Size: 6.84 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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' },
},
},
})
```