Files
nvim/lua/plugins/terminal.lua
2026-03-29 20:12:58 +01:00

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,
}