nVim/lua/plugins/spec/toggleterm.lua
Robert Morrison b80d610ced feat(toggleterm): add toggleterm
I use a terminal a lot while editing, and the less time I spend leaving
my editor the better, especially when it's for something quick
2026-04-10 02:37:09 +01:00

19 lines
348 B
Lua

---@module "lazy.nvim"
---@type LazySpec[]
return {
{
"akinsho/toggleterm.nvim",
version = "*",
---@module "toggleterm.config"
---@type ToggleTermConfig
---@diagnostic disable-next-line: missing-fields
opts = {
open_mapping = "<leader>t",
direction = "float",
},
keys = {
{ "<leader>t",desc = "toggle terminal" }
}
}
}