remove console from dap-ui layout
This commit is contained in:
@@ -22,6 +22,9 @@ return {
|
||||
},
|
||||
},
|
||||
},
|
||||
mappings = {
|
||||
auto_suggestions = false,
|
||||
},
|
||||
},
|
||||
dependencies = {
|
||||
'nvim-lua/plenary.nvim',
|
||||
|
||||
@@ -87,6 +87,28 @@ return {
|
||||
disconnect = '⏏',
|
||||
},
|
||||
},
|
||||
|
||||
layouts = {
|
||||
{
|
||||
elements = {
|
||||
{ id = 'scopes', size = 0.25 },
|
||||
{ id = 'breakpoints', size = 0.25 },
|
||||
{ id = 'stacks', size = 0.25 },
|
||||
{ id = 'watches', size = 0.25 },
|
||||
},
|
||||
size = 40, -- width of the panel
|
||||
position = 'left',
|
||||
},
|
||||
{
|
||||
elements = {
|
||||
{ id = 'repl', size = 1.0 },
|
||||
-- mostly useless to me (Delve doesn't use it)
|
||||
-- { id = "console", size = 0.25 }
|
||||
},
|
||||
size = 10, -- height of the panel
|
||||
position = 'bottom',
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
vim.fn.sign_define('DapBreakpoint', { text = '🔴', texthl = '', linehl = '', numhl = '' })
|
||||
|
||||
Reference in New Issue
Block a user