14 lines
218 B
Lua
14 lines
218 B
Lua
return {
|
|
{
|
|
"akinsho/toggleterm.nvim",
|
|
version = "*",
|
|
opts = {--[[ things you want to change go here]]
|
|
},
|
|
config = function()
|
|
require("toggleterm").setup({
|
|
open_mapping = [[<c-\>]],
|
|
})
|
|
end,
|
|
},
|
|
}
|