aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/nvim/.config
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2023-05-27 13:18:49 -0500
committerToby Vincent <tobyv13@gmail.com>2023-05-27 13:18:49 -0500
commit8feb3c70deaa28de8538f87072f57b7ab6b21f18 (patch)
tree47c277ee7a6d79a1b2298ba47a2ccecb40c57cb5 /nvim/.config
parentaec2c202b266483e33d6bd8ad33bed0deff944cb (diff)
fix(nvim): replace moved nerdfont characters
Diffstat (limited to 'nvim/.config')
-rw-r--r--nvim/.config/nvim/lua/plugins/dap.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/nvim/.config/nvim/lua/plugins/dap.lua b/nvim/.config/nvim/lua/plugins/dap.lua
index c2f7ecf..d9431c9 100644
--- a/nvim/.config/nvim/lua/plugins/dap.lua
+++ b/nvim/.config/nvim/lua/plugins/dap.lua
@@ -120,8 +120,8 @@ function M.config()
end
end
- vim.fn.sign_define("DapBreakpoint", { text = " ", texthl = "debugBreakpoint" })
- vim.fn.sign_define("DapBreakpointCondition", { text = "ﳁ ", texthl = "debugBreakpoint" })
+ vim.fn.sign_define("DapBreakpoint", { text = "󰝥 ", texthl = "debugBreakpoint" })
+ vim.fn.sign_define("DapBreakpointCondition", { text = "󰟃 ", texthl = "debugBreakpoint" })
vim.fn.sign_define("DapBreakpointRejected", { text = " ", texthl = "debugBreakpoint" })
vim.fn.sign_define("DapLogPoint", { text = " ", texthl = "debugBreakpoint" })
vim.fn.sign_define("DapStopped", { text = " ", texthl = "debugBreakpoint" })