termim.nvim improves your default neovim terminal experience, keeping it super simple.
- Auto enter insert mode when opening terminal
- Cleans up unnecessary clutter from terminal UI
- Auto closes terminal once process exits
- Terminals do not mess with your buffer list
- Handy commands to access full screen and split terminals
- Extend commands with any program of your choice
- neovim
Add the following to your lazy/packer config
-- Lazy
{
'2kabhishek/termim.nvim',
cmd = { 'Fterm', 'FTerm', 'Sterm', 'STerm', 'Vterm', 'VTerm' },
},
-- Packer
use '2kabhishek/termim.nvim'
termim.nvim
adds the following commands:
Fterm
: open terminal in new tabFTerm
: same as Fterm but stays open after process exitsSterm
: open terminal in new horizontal splitSTerm
: same as Sterm but stays open after process exitsVterm
: open terminal in new vertical splitVTerm
: same as Vterm but stays open after process exits
All the commands accept optional command as arg, if command is missing, your default shell will run
Fterm lazygit
: will open lazygit in a new tab
termim.nvim
adds the following mappings:
- J J β Return to normal mode in terminals, remap for
<C-\><C-n>
Other than the standard commands, you can use which-key to create your own commands.
t = {
name = 'Terminal',
['`'] = { '<cmd>Sterm<cr>', 'Horizontal Terminal' },
e = { '<cmd>Sterm iex<cr>', 'Elixir' },
g = { '<cmd>Fterm lazygit<cr>', 'Lazygit' },
n = { '<cmd>Sterm node<cr>', 'Node' },
p = { '<cmd>Sterm bpython<cr>', 'Python' },
r = { '<cmd>Sterm irb<cr>', 'Ruby' },
s = { '<cmd>Sterm<cr>', 'Horizontal Terminal' },
t = { '<cmd>Fterm<cr>', 'Terminal' },
v = { '<cmd>Vterm<cr>', 'Vertical Terminal' },
},
You tell me!
Most terminal plugins offer a lot more than I needed, whereas I needed some small enhancements of the default neovim terminal experience.
- Figuring out some autogroup and buffer related APIs
- tdo.nvim β Fast and simple note-taking in neovim
- co-author.nvim β Search and add git co authors
- nerdy.nvim β Search and add nerd glyphs
β hit the star button if you found this useful β
Source | Blog | Twitter | LinkedIn | More Links | Other Projects