Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
neovim-config/lua/user/dap.lua

13 lines
236 B
Lua
Raw Normal View History

2022-07-09 13:10:31 +00:00
local dapui_status_ok, dapui = pcall(require, "dapui")
if not dapui_status_ok then
return
end
2022-07-17 23:36:31 +00:00
local vtext_status_ok, vtext = pcall(require, "nvim-dap-virtual-text")
if not vtext_status_ok then
2022-07-09 13:10:31 +00:00
return
end
dapui.setup()
2022-07-17 23:36:31 +00:00
vtext.setup()