https://github.com/jrentlez/split-term.nvim
Toggle a persistent terminal in a split
https://github.com/jrentlez/split-term.nvim
neovim-plugin neovim-plugin-lua
Last synced: 8 months ago
JSON representation
Toggle a persistent terminal in a split
- Host: GitHub
- URL: https://github.com/jrentlez/split-term.nvim
- Owner: jrentlez
- License: gpl-3.0
- Created: 2025-08-31T12:30:38.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-09-27T07:56:17.000Z (8 months ago)
- Last Synced: 2025-09-30T09:29:50.258Z (8 months ago)
- Topics: neovim-plugin, neovim-plugin-lua
- Language: Lua
- Homepage:
- Size: 26.4 KB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# split-term.nvim
Toggles a persistent terminal in a split window.
## Installation
vim.pack (requires neovim nightly)
```lua
vim.pack.add({ "https://github.com/TungstnBallon/split-term.nvim" })
-- If you put this line in your `plugin/` directory, you need to add `load = true`
vim.pack.add({ "https://github.com/TungstnBallon/split-term.nvim" }, { load = true })
```
lazy.nvim
```lua
{
"https://github.com/TungstnBallon/split-term.nvim",
lazy = false, -- Don't worry, the plugin is lazy loaded internally
}
```
## Setup
See `:help split-term-setup`
## Configuration
See `:help split-term-config`