Dot_Files/.config/nvim/lua/plugins/dap.lua
2022-01-08 15:24:29 -06:00

15 lines
702 B
Lua
Executable File

local present, dap = pcall(require, "dap")
if not present then
return
end
-- dap-ui configurations
require("dapui").setup({})
dap.defaults.fallback.terminal_win_cmd = 'ToggleTerm'
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=''})