Adding fugitive and changing catpuccin to frappe.

This commit is contained in:
calcu1on
2025-03-30 22:21:49 -04:00
parent 3bdf68fb70
commit 2a0dd567b9
5 changed files with 36 additions and 22 deletions

View File

@@ -40,12 +40,15 @@ dap.configurations.php = {
type = "php",
request = "launch",
port = 9003,
log = true,
-- this is where your file is in the container
pathMappings = {
["/var/www/html/web"] = "${workspaceFolder}"
}
}
}
vim.fn.sign_define('DapBreakpoint',{ text ='🟥', texthl ='', linehl ='', numhl =''})
vim.fn.sign_define('DapStopped',{ text ='▶️', texthl ='', linehl ='', numhl =''})
vim.keymap.set('n', '<leader>?', function() dap.continue() end)
vim.keymap.set('n', '<leader>N', function() dap.step_over() end)
vim.keymap.set('n', '<leader>n', function() dap.step_into() end)