This repository has been archived on 2026-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
nvim/lua/plugins/configs/kterm.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)