1
0
Fork 0
dotfiles/.config/nvim/lua/plugins/misc/toggleterm.lua
2023-11-23 21:27:43 +01:00

32 lines
707 B
Lua

local M = { "akinsho/toggleterm.nvim" }
M.opts = {
size = 20,
open_mapping = [[<c-\>]],
hide_numbers = true,
shade_terminals = true,
shading_factor = 2,
start_in_insert = true,
insert_mappings = true,
persist_size = true,
direction = "float",
close_on_exit = true,
shell = vim.o.shell,
float_opts = {
winblend = 0,
highlights = {
border = "Normal",
background = "Normal",
},
border = "rounded",
},
}
--local Terminal = require("toggleterm.terminal").Terminal
--local lazygit = Terminal:new({ cmd = "lazygit", hidden = true })
--
--function _LAZYGIT_TOGGLE()
-- lazygit:toggle()
--end
return M