mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 04:21:03 +00:00
18 lines
354 B
Lua
18 lines
354 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" },
|
|
},
|
|
|
|
config = function(_, opts)
|
|
require("toggleterm").setup(opts)
|
|
end,
|
|
}
|