Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 679 Bytes

README.md

File metadata and controls

34 lines (26 loc) · 679 Bytes

term-toggle.nvim

A simple Neovim plugin to toggle between an editor and terminal buffer.

Installation

Using packer.nvim:

use {
  'term-toggle.nvim',
  config = function()
    require('term-toggle').setup({
      toggle_terminal = '<C-t>' -- Customize keybinding
    })
  end
}

Using lazy.nvim:

lazy.setup {
  {'karvla/term-toggle.nvim', config = function()
    require('term-toggle').setup({
      toggle_terminal = '<C-t>' -- Customize keybinding
    })
  end}
}

Usage

Toggle between your editor and terminal buffer using the configured keybinding.