diff options
author | Jieru Mei <[email protected]> | 2023-03-19 21:55:02 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2023-03-19 21:55:02 -0700 |
commit | 76040d25ff61400317640347e5d5d551ca8cc2d0 (patch) | |
tree | 3cbbc86fbb16527e477cd8b1b68c0721de2ef622 | |
parent | 57395bcc8a361d5976e08c09f814c13f37352584 (diff) |
fix(dap): invalid border value (#3951)
-rw-r--r-- | lua/lvim/core/dap.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lvim/core/dap.lua b/lua/lvim/core/dap.lua index d8de10d5..cdb9b574 100644 --- a/lua/lvim/core/dap.lua +++ b/lua/lvim/core/dap.lua @@ -82,7 +82,7 @@ M.config = function() floating = { max_height = 0.9, max_width = 0.5, -- Floats will be treated as percentage of your screen. - border = vim.g.border_chars, -- Border style. Can be 'single', 'double' or 'rounded' + border = "rounded", mappings = { close = { "q", "<Esc>" }, }, |