diff --git a/lua/custom/plugins/avante.lua b/lua/custom/plugins/avante.lua index 79a4e30..879afc4 100644 --- a/lua/custom/plugins/avante.lua +++ b/lua/custom/plugins/avante.lua @@ -22,6 +22,9 @@ return { }, }, }, + mappings = { + auto_suggestions = false, + }, }, dependencies = { 'nvim-lua/plenary.nvim', diff --git a/lua/kickstart/plugins/debug.lua b/lua/kickstart/plugins/debug.lua index ea2df3f..b197056 100644 --- a/lua/kickstart/plugins/debug.lua +++ b/lua/kickstart/plugins/debug.lua @@ -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 = '' })