summaryrefslogtreecommitdiff
path: root/lua/plugins.lua
diff options
context:
space:
mode:
authorJacek Kiedrowski <[email protected]>2021-07-05 20:15:25 +0100
committerGitHub <[email protected]>2021-07-05 20:15:25 +0100
commit1f32f7737a544d539b2251cbdb2b717ff7e06458 (patch)
tree7c0b4e3e928833972efe282eb84dc25b70235b25 /lua/plugins.lua
parent97d7adfb2f710345bf5d6a0cac4d76900f11fd38 (diff)
parent6b41286d70b71184b915724a0a03ccd8ec3b4e16 (diff)
Merge branch 'ChristianChiarulli:master' into master
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r--lua/plugins.lua2
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,