You've already forked dotfiles
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:
@@ -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',
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user