This commit is contained in:
asep komarudin 2023-01-20 23:54:33 +07:00
parent 40c553beb7
commit 3a3e97c300
2 changed files with 3 additions and 13 deletions

View file

@ -399,14 +399,4 @@ return {
-- require("user.chat_gpt")
-- end,
},
-- LSP Notify
{
"mrded/nvim-lsp-notify",
dependencies = "rcarriga/nvim-notify",
config = function()
require("lsp-notify").setup({
notify = require("notify"),
})
end,
},
}

View file

@ -233,7 +233,7 @@ local mappings = {
if is_dap then
require("dap").toggle_breakpoint()
else
vim.notify("DAP Not Support", "error")
vim.notify("DAP Not Support", "info")
end
end,
"Toggle Breakpoint",
@ -243,7 +243,7 @@ local mappings = {
if is_dap then
require("dap").clear_breakpoints()
else
vim.notify("DAP Not Support", "error")
vim.notify("DAP Not Support", "info")
end
end,
"Clear Breakpoints",
@ -253,7 +253,7 @@ local mappings = {
if is_dap then
require("dap").continue()
else
vim.notify("DAP Not Support", "error")
vim.notify("DAP Not Support", "info")
end
end,
"Start/Continue",