diff options
author | christianchiarulli <[email protected]> | 2021-07-05 13:58:38 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-07-05 13:58:38 -0400 |
commit | 279e01f2f35948afa185115b100254cd1496277b (patch) | |
tree | 5e4c7251b6b42b0a2f14c4fba95ceafc7fed4a3b /lua/plugins.lua | |
parent | 1940bd26a6538210f2e03dd657705d532c67a097 (diff) |
debugging updates
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r-- | lua/plugins.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index a6f0d646..1a857c66 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -254,7 +254,7 @@ return require("packer").startup(function(use) "mfussenegger/nvim-dap", config = function() require('dap') - vim.fn.sign_define('DapBreakpoint', {text='🛑', texthl='', linehl='', numhl=''}) + vim.fn.sign_define('DapBreakpoint', {text='', texthl='LspDiagnosticsSignError', linehl='', numhl=''}) require('dap').defaults.fallback.terminal_win_cmd = '50vsplit new' end, disable = not O.plugin.debug.active, |