dotfiles/config/lvim/lua/plug/dap.lua
2021-10-03 17:31:30 +03:00

8 lines
97 B
Lua

local M = {}
function M.setup()
-- Virtual text
vim.g.dap_virtual_text = true
end
return M