Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/friedow/buggler.nvim
Toggle neovim terminal buffers with a single keystroke.
https://github.com/friedow/buggler.nvim
lua neovim neovim-plugin terminal
Last synced: about 2 months ago
JSON representation
Toggle neovim terminal buffers with a single keystroke.
- Host: GitHub
- URL: https://github.com/friedow/buggler.nvim
- Owner: friedow
- License: mit
- Created: 2024-11-20T17:30:44.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-20T18:00:15.000Z (2 months ago)
- Last Synced: 2024-11-20T18:35:08.468Z (2 months ago)
- Topics: lua, neovim, neovim-plugin, terminal
- Language: Lua
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# buggler.nvim
Toggle neovim terminal buffers with a single keystroke.
## Installation
Plug
```
Plug 'friedow/buggler.nvim'
```packer.nvim
```
use 'friedow/buggler.nvim'
```## Usage
Just add a keybind and start toggling terminals.
```lua
vim.keymap.set("n", "", function()
require("buggler").toggle_terminal_buffer("Terminal 1")
end)vim.keymap.set("n", "", function()
require("buggler").toggle_terminal_buffer("Terminal 2")
end)
```