fix: Large cleanup of formatting in plugins, re-enabling of gdb in DAP,

removing large portions of the render-markdown plugin settings as they
are just the defaults
This commit is contained in:
2026-03-31 12:57:03 -05:00
parent 0fd6336d5a
commit 257dabd9bd
10 changed files with 45 additions and 149 deletions

View File

@@ -96,11 +96,11 @@ return {
vim.fn.sign_define('DapBreakpointCondition', { text = '🝌', texthl = '', lineh = '', numhl = '' })
vim.fn.sign_define('DapStopped', { text = '▶️' })
-- dap.adapters.gdb = {
-- type = 'executable',
-- command = 'gdb',
-- args = { '-i', 'dap' },
-- }
dap.adapters.gdb = {
type = 'executable',
command = 'gdb',
args = { '-i', 'dap' },
}
dap.adapters.lldb = {
command = 'lldb',
@@ -130,7 +130,7 @@ return {
name = 'Launch current file',
request = 'launch',
program = '${file}',
pythonPath = function ()
pythonPath = function()
if vim.env.VIRTUAL_ENV then
return vim.env.VIRTUAL_ENV .. '/bin/python'
end
@@ -157,7 +157,7 @@ return {
{
'<leader>dh',
function() require('dap.ui.widgets').hover() end,
mode = 'n', 'v',
mode = { 'n', 'v' },
desc = 'DAP: Debug hover',
},
{