1
0
Fork 0
dotfiles/config/nvim/lua/nifoc/config/fterm.lua
2021-12-19 21:32:38 +01:00

20 lines
298 B
Lua

local fterm = require('FTerm')
fterm.setup {
cmd = 'fish',
border = { '', '', '', '', '', '', '', '' },
}
local lazygit = fterm:new({
cmd = 'lazygit',
dimensions = {
height = 0.9,
width = 0.9
},
})
function _G.__fterm_lazygit()
lazygit:toggle()
end