Dot_Files/.config/nvim-old/lua/plugins/dap.lua
2022-01-10 09:55:15 -06:00

14 lines
648 B
Lua
Executable File

local present, dap = pcall(require, "dap")
if not present then
return
end
-- dap-ui configurations
require("dapui").setup({})
vim.fn.sign_define('DapBreakpoint', {text='', texthl='DiagnosticSignError', linehl='', numhl=''})
vim.fn.sign_define('DapBreakpointCondition', {text='', texthl='DiagnosticSignWarn', linehl='', numhl=''})
vim.fn.sign_define('DapLogPoint', {text='', texthl='DiagnosticSignInfo', linehl='', numhl=''})
vim.fn.sign_define('DapStopped', {text='', texthl='DiagnosticSignWarn', linehl='', numhl=''})
vim.fn.sign_define('DapBreakpointReject', {text='' , texthl='DiagnosticSignHint', linehl='', numhl=''})