mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 08:35:48 +02:00
update
This commit is contained in:
parent
40c553beb7
commit
3a3e97c300
2 changed files with 3 additions and 13 deletions
|
@ -399,14 +399,4 @@ return {
|
||||||
-- require("user.chat_gpt")
|
-- require("user.chat_gpt")
|
||||||
-- end,
|
-- end,
|
||||||
},
|
},
|
||||||
-- LSP Notify
|
|
||||||
{
|
|
||||||
"mrded/nvim-lsp-notify",
|
|
||||||
dependencies = "rcarriga/nvim-notify",
|
|
||||||
config = function()
|
|
||||||
require("lsp-notify").setup({
|
|
||||||
notify = require("notify"),
|
|
||||||
})
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -233,7 +233,7 @@ local mappings = {
|
||||||
if is_dap then
|
if is_dap then
|
||||||
require("dap").toggle_breakpoint()
|
require("dap").toggle_breakpoint()
|
||||||
else
|
else
|
||||||
vim.notify("DAP Not Support", "error")
|
vim.notify("DAP Not Support", "info")
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
"Toggle Breakpoint",
|
"Toggle Breakpoint",
|
||||||
|
@ -243,7 +243,7 @@ local mappings = {
|
||||||
if is_dap then
|
if is_dap then
|
||||||
require("dap").clear_breakpoints()
|
require("dap").clear_breakpoints()
|
||||||
else
|
else
|
||||||
vim.notify("DAP Not Support", "error")
|
vim.notify("DAP Not Support", "info")
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
"Clear Breakpoints",
|
"Clear Breakpoints",
|
||||||
|
@ -253,7 +253,7 @@ local mappings = {
|
||||||
if is_dap then
|
if is_dap then
|
||||||
require("dap").continue()
|
require("dap").continue()
|
||||||
else
|
else
|
||||||
vim.notify("DAP Not Support", "error")
|
vim.notify("DAP Not Support", "info")
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
"Start/Continue",
|
"Start/Continue",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue