Update debug.lua

This commit is contained in:
SamPosh 2023-04-24 17:39:00 +05:30 committed by GitHub
parent 71ae43e589
commit 3a20d76673
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -73,9 +73,9 @@ return {
vim.api.nvim_set_hl(0, "green", { fg = "#9ece6a", bg = "#FFFF00" }) vim.api.nvim_set_hl(0, "green", { fg = "#9ece6a", bg = "#FFFF00" })
vim.api.nvim_set_hl(0, "yellow", { fg = "#FAFA33", bg = "#FFFa05" }) vim.api.nvim_set_hl(0, "yellow", { fg = "#FAFA33", bg = "#FFFa05" })
vim.api.nvim_set_hl(0, "black", { fg = "#000000", bg = "#FFFF00" }) vim.api.nvim_set_hl(0, "black", { fg = "#000000", bg = "#FFFF00" })
vim.fn.sign_define('DapBreakpoint',{ text="", texthl='blue',linehl='black', numhl='yellow' }) vim.fn.sign_define('DapBreakpoint',{ text = '🐞', texthl='blue',linehl='black', numhl='yellow' })
vim.fn.sign_define('DapStopped',{ text="", texthl='green',linehl='black', numhl='yellow' }) vim.fn.sign_define('DapStopped',{ text="", texthl='green',linehl='black', numhl='yellow' })
-- Dap UI setup -- Dap UI setup
-- For more information, see |:help nvim-dap-ui| -- For more information, see |:help nvim-dap-ui|
dapui.setup { dapui.setup {