aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/nvim
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2023-05-15 17:59:24 -0500
committerToby Vincent <tobyv13@gmail.com>2023-05-15 17:59:24 -0500
commit5ff4d28fa18a43da987cb9ddea87820e0ea86d1c (patch)
tree5d26f48278b81abe48f82dabe70b029b6e840330 /nvim
parent4eb27b0ec175e144f4ef3570a4f88b6cb8a29b6a (diff)
fix(nvim): fix moved Nerd Font code points
See: https://github.com/ryanoasis/nerd-fonts/issues/365
Diffstat (limited to 'nvim')
-rw-r--r--nvim/.config/nvim/lua/plugins/gitsigns.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/nvim/.config/nvim/lua/plugins/gitsigns.lua b/nvim/.config/nvim/lua/plugins/gitsigns.lua
index de232aa..3d42309 100644
--- a/nvim/.config/nvim/lua/plugins/gitsigns.lua
+++ b/nvim/.config/nvim/lua/plugins/gitsigns.lua
@@ -7,8 +7,8 @@ local M = {
signs = {
add = { text = "▎" },
change = { text = "▎" },
- delete = { text = "契" },
- topdelete = { text = "契" },
+ delete = { text = "󰐊" },
+ topdelete = { text = "󰐊" },
changedelete = { text = "▎" },
},
preview_config = { border = "single" },