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

15 lines
199 B
Lua
Raw Permalink Normal View History

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