17 lines
384 B
Lua
17 lines
384 B
Lua
-- A neovim lua plugin to help easily manage multiple terminal windows
|
|
-- https://github.com/akinsho/toggleterm.nvim
|
|
|
|
-- Set ZSH as shell to get it in a terminal buffer
|
|
vim.opt.shell = "/usr/bin/zsh"
|
|
|
|
return {
|
|
{
|
|
'akinsho/toggleterm.nvim',
|
|
version = "*",
|
|
opts = {
|
|
-- Avoid terminal to be darker than the Nord colorscheme
|
|
shade_terminals = false
|
|
}
|
|
}
|
|
}
|