浏览代码

fix(dap): invalid border value (#3951)

Jieru Mei 2 年之前
父节点
当前提交
76040d25ff
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lua/lvim/core/dap.lua

+ 1 - 1
lua/lvim/core/dap.lua

@@ -82,7 +82,7 @@ M.config = function()
         floating = {
         floating = {
           max_height = 0.9,
           max_height = 0.9,
           max_width = 0.5, -- Floats will be treated as percentage of your screen.
           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 = {
           mappings = {
             close = { "q", "<Esc>" },
             close = { "q", "<Esc>" },
           },
           },