1
0
Fork 0
linux-conf/configs/nvim/lua/plugins/nvim-fterm.lua

15 lines
196 B
Lua
Raw Normal View History

2021-08-06 13:30:09 +02:00
local function init()
2021-11-18 22:25:17 +01:00
require'FTerm'.setup {
border = 'double',
dimensions = {
2021-08-06 13:30:09 +02:00
height = 0.8,
width = 0.8,
x = 0.5,
y = 0.5
2021-11-18 22:25:17 +01:00
}
2021-08-06 13:30:09 +02:00
}
end
return {
init = init
}