mirror of
https://github.com/darwincereska/nvim-config.git
synced 2026-02-12 05:24:41 -05:00
16 lines
304 B
Lua
16 lines
304 B
Lua
return {
|
|
"akinsho/toggleterm.nvim",
|
|
version = "*",
|
|
opt = {
|
|
|
|
},
|
|
config = function()
|
|
require("toggleterm").setup({
|
|
direction = "float",
|
|
close_on_exit = true,
|
|
shell = "/bin/zsh -l",
|
|
shade_in_terminals = true,
|
|
})
|
|
end,
|
|
}
|