starter/lua/plugins/toggle-term.lua
2025-11-30 16:52:26 +00:00

19 lines
401 B
Lua

return {
"akinsho/toggleterm.nvim",
version = "*",
keys = {
{ "<leader>tt", "<cmd>ToggleTerm direction=float<cr>", desc = "Toggle Terminal" },
},
opts = {
open_mapping = [[<leader>tt]],
direction = "float",
float_opts = { border = "rounded" },
shell = vim.fn.exepath("zsh") .. " -l -i",
},
config = function(_, opts)
require("toggleterm").setup(opts)
end,
}