Dot_Files/.config/nvim/lua/plugins/configs/dap-ui.lua

10 lines
592 B
Lua
Raw Normal View History

2022-01-10 09:55:15 -06:00
local fn = vim.fn
2022-05-11 21:00:57 -05:00
require('dapui').setup({})
2022-05-11 21:00:57 -05:00
fn.sign_define('DapBreakpoint', { text = '', texthl = 'DiagnosticSignError', linehl = '', numhl = '' })
fn.sign_define('DapBreakpointCondition', { text = '', texthl = 'DiagnosticSignWarn', linehl = '', numhl = '' })
fn.sign_define('DapLogPoint', { text = '', texthl = 'DiagnosticSignInfo', linehl = '', numhl = '' })
fn.sign_define('DapStopped', { text = '', texthl = 'DiagnosticSignWarn', linehl = '', numhl = '' })
fn.sign_define('DapBreakpointReject', { text = '', texthl = 'DiagnosticSignHint', linehl = '', numhl = '' })