From 3a3e97c300e96bd5b2ce4f5ffece2bff74ae8b7c Mon Sep 17 00:00:00 2001 From: asep komarudin Date: Fri, 20 Jan 2023 23:54:33 +0700 Subject: [PATCH] update --- lua/plugins/init.lua | 10 ---------- lua/user/whichkey.lua | 6 +++--- 2 files changed, 3 insertions(+), 13 deletions(-) diff --git a/lua/plugins/init.lua b/lua/plugins/init.lua index 875ae50..a202029 100644 --- a/lua/plugins/init.lua +++ b/lua/plugins/init.lua @@ -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, - }, } diff --git a/lua/user/whichkey.lua b/lua/user/whichkey.lua index d0a3c87..be3ee4c 100644 --- a/lua/user/whichkey.lua +++ b/lua/user/whichkey.lua @@ -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",