debugging updates

This commit is contained in:
christianchiarulli 2021-07-05 13:58:38 -04:00
parent 1940bd26a6
commit 279e01f2f3
3 changed files with 3 additions and 3 deletions

View file

@ -76,7 +76,7 @@ if O.lang.python.autoformat then
}
end
if O.plugin.dap_install.active then
if O.plugin.debug.active and O.plugin.dap_install.active then
local dap_install = require("dap-install")
dap_install.config("python_dbg", {})
end

View file

@ -104,7 +104,7 @@ table.insert(gls.left, {
vim.api.nvim_command("hi GalaxyViMode guifg=" .. mode_color[vim.fn.mode()])
return ""
end,
-- highlight = 'TabLineSel'
highlight = 'StatusLineNC'
-- highlight = {colors.red, colors.bg}
},
})

View file

@ -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,