From ae0a2389ff1fca0d9dff29f2ccdc0baee9fc5f65 Mon Sep 17 00:00:00 2001 From: Ching Pei Yang Date: Thu, 15 Jun 2023 18:17:13 +0200 Subject: [PATCH] feat(dap): add breakpoint icon --- modules/debugger/nvim-dap/config.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/debugger/nvim-dap/config.nix b/modules/debugger/nvim-dap/config.nix index 35610a8..874e1b6 100644 --- a/modules/debugger/nvim-dap/config.nix +++ b/modules/debugger/nvim-dap/config.nix @@ -21,6 +21,7 @@ in { # TODO customizable keymaps nvim-dap = nvim.dag.entryAnywhere '' local dap = require("dap") + vim.fn.sign_define("DapBreakpoint", { text = "🛑", texthl = "ErrorMsg", linehl = "", numhl = "" }) ''; } // mapAttrs (_: v: (nvim.dag.entryAfter ["nvim-dap"] v)) cfg.sources;