From 8de5226ac28e10babf48629df1d15ece46fe5fc1 Mon Sep 17 00:00:00 2001 From: name Date: Sun, 20 Oct 2024 13:05:43 +0900 Subject: [PATCH] docs: Delete reference URL (written in PR) feat: "Break" and "Stop" arguments of vim.api.nvim_set_hl are changed because they are too common nouns feat: Comment out changes regarding diagnostic symbols so that only those who want to change them can do so --- lua/kickstart/plugins/debug.lua | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/lua/kickstart/plugins/debug.lua b/lua/kickstart/plugins/debug.lua index 2067ce3a..2226d963 100644 --- a/lua/kickstart/plugins/debug.lua +++ b/lua/kickstart/plugins/debug.lua @@ -90,17 +90,16 @@ return { } -- Change breakpoint icons - -- For more information, see https://github.com/mfussenegger/nvim-dap/discussions/355 - vim.api.nvim_set_hl(0, 'Break', { fg = '#e51400' }) - vim.api.nvim_set_hl(0, 'Stop', { fg = '#ffcc00' }) - local breakpoint_icons = vim.g.have_nerd_font - and { Breakpoint = '', BreakpointCondition = '', BreakpointRejected = '', LogPoint = '', Stopped = '' } - or { Breakpoint = '●', BreakpointCondition = '⊜', BreakpointRejected = '⊘', LogPoint = '◆', Stopped = '⭔' } - for type, icon in pairs(breakpoint_icons) do - local tp = 'Dap' .. type - local hl = (type == 'Stopped') and 'Stop' or 'Break' - vim.fn.sign_define(tp, { text = icon, texthl = hl, numhl = hl }) - end + -- vim.api.nvim_set_hl(0, 'DapBreak', { fg = '#e51400' }) + -- vim.api.nvim_set_hl(0, 'DapStop', { fg = '#ffcc00' }) + -- local breakpoint_icons = vim.g.have_nerd_font + -- and { Breakpoint = '', BreakpointCondition = '', BreakpointRejected = '', LogPoint = '', Stopped = '' } + -- or { Breakpoint = '●', BreakpointCondition = '⊜', BreakpointRejected = '⊘', LogPoint = '◆', Stopped = '⭔' } + -- for type, icon in pairs(breakpoint_icons) do + -- local tp = 'Dap' .. type + -- local hl = (type == 'Stopped') and 'DapStop' or 'DapBreak' + -- vim.fn.sign_define(tp, { text = icon, texthl = hl, numhl = hl }) + -- end dap.listeners.after.event_initialized['dapui_config'] = dapui.open dap.listeners.before.event_terminated['dapui_config'] = dapui.close