32 lines
1.1 KiB
Lua
32 lines
1.1 KiB
Lua
require("toggleterm").setup{
|
|
size = 70,
|
|
open_mapping = [[<c-\>]],
|
|
hide_numbers = true, -- hide the number column in toggleterm buffers
|
|
shade_filetypes = {},
|
|
shade_terminals = true,
|
|
shading_factor = '1', -- the degree by which to darken to terminal colour, default: 1 for dark backgrounds, 3 for light
|
|
start_in_insert = true,
|
|
persist_size = true,
|
|
-- direction = 'vertical' | 'horizontal' | 'window' | 'float',
|
|
direction = 'vertical',
|
|
close_on_exit = true, -- close the terminal window when the process exits
|
|
shell = vim.o.shell, -- change the default shell
|
|
-- This field is only relevant if direction is set to 'float'
|
|
float_opts = {
|
|
-- The border key is *almost* the same as 'nvim_win_open'
|
|
-- see :h nvim_win_open for details on borders however
|
|
-- the 'curved' border is a custom border type
|
|
-- not natively supported but implemented in this plugin.
|
|
|
|
-- border = 'single' | 'double' | 'shadow' | 'curved' | ... other options supported by win open
|
|
border = 'single',
|
|
width = 30,
|
|
height = 30,
|
|
winblend = 3,
|
|
highlights = {
|
|
border = "Normal",
|
|
background = "Normal",
|
|
}
|
|
}
|
|
}
|