add vim-fugitive

This commit is contained in:
Lucas Garcia Rubio 2025-02-26 13:28:49 -03:00
parent 5636d0e913
commit 044d74b814
10 changed files with 392 additions and 16 deletions

View file

@ -0,0 +1,17 @@
return {
-- https://github.com/theHamsta/nvim-dap-virtual-text
'theHamsta/nvim-dap-virtual-text',
lazy = true,
opts = {
-- Display debug text as a comment
commented = true,
-- Customize virtual text
display_callback = function(variable, buf, stackframe, node, options)
if options.virt_text_pos == 'inline' then
return ' = ' .. variable.value
else
return variable.name .. ' = ' .. variable.value
end
end,
},
}