From 8f92613c6f8882a9e4ef4105eb148570dde6fd7a Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Wed, 22 Jun 2022 01:41:50 -0700 Subject: [PATCH] nvim: fix dap-ui configuration --- .config/nvim/lua/blake/dap.lua | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/.config/nvim/lua/blake/dap.lua b/.config/nvim/lua/blake/dap.lua index 497e11a..c3ed409 100644 --- a/.config/nvim/lua/blake/dap.lua +++ b/.config/nvim/lua/blake/dap.lua @@ -72,30 +72,6 @@ M.dap_ui = function() edit = "s", -- (as in substitute) repl = "r", -- open a repl }, - sidebar = { - -- You can change the order of elements in the sidebar - elements = { - -- size can be float or integer > 1 - { id = "scopes", size = 0.80, }, - { id = "breakpoints", size = 0.20 }, - -- { id = "stacks", size = 0.15 }, - -- { id = "watches", size = 0.15 }, - }, - size = 40, - position = "left", -- Can be "left", "right", "top", "bottom" - }, - tray = { - elements = { "repl" }, - size = 0, - position = "top", -- Can be "left", "right", "top", "bottom" - }, - floating = { - max_height = nil, -- These can be integers or a float between 0 and 1. - max_width = nil, -- Floats will be treated as percentage of your screen. - mappings = { - close = { "q", "" }, - }, - }, windows = { indent = 1 }, }) end -- <<<