From 6fbe6678a8244c5ff452f82303c89e2076053c83 Mon Sep 17 00:00:00 2001 From: hwu Date: Sun, 7 Sep 2025 21:42:04 -0400 Subject: [PATCH] mend --- after/lsp/ts_ls.lua | 8 ++++---- lua/kickstart/plugins/debug.lua | 5 +++-- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/after/lsp/ts_ls.lua b/after/lsp/ts_ls.lua index 5863fc0d..edb3d86f 100644 --- a/after/lsp/ts_ls.lua +++ b/after/lsp/ts_ls.lua @@ -1,9 +1,9 @@ return { filetypes = { - 'javascript', - 'javascriptreact', - 'typescript', - 'typescriptreact', + -- 'javascript', + -- 'javascriptreact', + -- 'typescript', + -- 'typescriptreact', 'vue', }, init_options = { diff --git a/lua/kickstart/plugins/debug.lua b/lua/kickstart/plugins/debug.lua index 196f2c6d..795fb583 100644 --- a/lua/kickstart/plugins/debug.lua +++ b/lua/kickstart/plugins/debug.lua @@ -33,9 +33,10 @@ return { { '', dap.step_into, desc = 'Debug: Step Into' }, { '', dap.step_over, desc = 'Debug: Step Over' }, { '', dap.step_out, desc = 'Debug: Step Out' }, - { 'b', dap.toggle_breakpoint, desc = 'Debug: Toggle Breakpoint' }, + { 'cb', dap.toggle_breakpoint, desc = 'Debug: Toggle Breakpoint' }, + { 'ct', dapui.toggle, desc = 'Toggle DAP UI' }, { - 'B', + 'cB', function() dap.set_breakpoint(vim.fn.input 'Breakpoint condition: ') end,