mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-31 23:40:03 +02:00
11 lines
229 B
Lua
11 lines
229 B
Lua
|
require('toggleterm').setup {
|
||
|
direction = 'float',
|
||
|
float_opts = {
|
||
|
border = 'curved',
|
||
|
width = 100,
|
||
|
height = 30,
|
||
|
winblend = 0, -- optional: transparency
|
||
|
-- Omit row/col so it's automatically centered
|
||
|
},
|
||
|
}
|