diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-06 12:11:59 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-06 12:11:59 +0200 |
commit | a2cd305449ef449d54ff4c32db2163b2344c92e6 (patch) | |
tree | 856341adde18d76f90f3c8c4db58ecb5d4ad7284 /fnl | |
parent | f0b1c8b5380acb6eb060fe43be9b9c70c14db864 (diff) |
Update gitsigns icons
Diffstat (limited to 'fnl')
-rw-r--r-- | fnl/config/gitsigns.fnl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fnl/config/gitsigns.fnl b/fnl/config/gitsigns.fnl index 07b9157..53d7da3 100644 --- a/fnl/config/gitsigns.fnl +++ b/fnl/config/gitsigns.fnl @@ -2,23 +2,23 @@ (module config.gitsigns {autoload {util util}}) (def- signs {:add {:hl :GitSignsAdd - :text "▎" + :text "|" :numhl :GitSignsAddNr :linehl :GitSignsAddLn} :change {:hl :GitSignsChange - :text "▎" + :text "|" :numhl :GitSignsChangeNr :linehl :GitSignsChangeLn} :delete {:hl :GitSignsDelete - :text "契" + :text "_" :numhl :GitSignsDeleteNr :linehl :GitSignsDeleteLn} :topdelete {:hl :GitSignsDelete - :text "契" + :text "‾" :numhl :GitSignsDeleteNr :linehl :GitSignsDeleteLn} :changedelete {:hl :GitSignsChange - :text "▎" + :text "~" :numhl :GitSignsChangeNr :linehl :GitSignsChangeLn}}) |