1
0
Fork 0
dotfiles/.config/nvim/lua/plugins/config/toggleterm.lua
2023-01-28 19:06:51 +01:00

33 lines
750 B
Lua

local status_ok, toggleterm = pcall(require, 'toggleterm')
if not status_ok then
return
end
toggleterm.setup({
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