14 lines
311 B
Lua
14 lines
311 B
Lua
return {
|
|
"akinsho/toggleterm.nvim",
|
|
version = "*",
|
|
config = function()
|
|
require("toggleterm").setup({
|
|
size = 15,
|
|
open_mapping = [[<C-\>]], -- toggle terminal with Ctrl + \
|
|
direction = "horizontal", -- options: 'vertical', 'tab', 'float'
|
|
shade_terminals = true,
|
|
})
|
|
end,
|
|
}
|
|
|