25 lines
612 B
Lua
25 lines
612 B
Lua
local options = {
|
|
terminals = {
|
|
list = {},
|
|
type_opts = {
|
|
float = {
|
|
relative = "editor",
|
|
row = 0.07,
|
|
col = 0.05,
|
|
width = 0.9,
|
|
height = 0.8,
|
|
border = "single",
|
|
},
|
|
horizontal = { location = "rightbelow", split_ratio = 0.4 },
|
|
vertical = { location = "rightbelow", split_ratio = 0.5 },
|
|
},
|
|
},
|
|
behavior = {
|
|
close_on_exit = true,
|
|
auto_insert = true,
|
|
},
|
|
enable_new_mappings = true,
|
|
}
|
|
|
|
require("kterm").setup(options)
|