diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-08 00:10:15 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-08 00:10:15 +0200 |
commit | 897d7bd4e14bd7381ac61b57ee001633fa51a741 (patch) | |
tree | 9ab57a7d6975fc555c485050c5400711bed9c32b /fnl | |
parent | c9f4969c23d60edc0169cec582ddc83ec4809699 (diff) |
fix(gitsigns): string keys
Diffstat (limited to 'fnl')
-rw-r--r-- | fnl/config/gitsigns.fnl | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/fnl/config/gitsigns.fnl b/fnl/config/gitsigns.fnl index 621f2b1..d179e3e 100644 --- a/fnl/config/gitsigns.fnl +++ b/fnl/config/gitsigns.fnl @@ -3,35 +3,35 @@ {autoload {util util}}) (def- signs { - add { - hl "GitSignsAdd" - text "▎" - numhl "GitSignsAddNr" - linehl "GitSignsAddLn" + :add { + :hl "GitSignsAdd" + :text "▎" + :numhl "GitSignsAddNr" + :linehl "GitSignsAddLn" } - change { - hl "GitSignsChange" - text "▎" - numhl "GitSignsChangeNr" - linehl "GitSignsChangeLn" + :change { + :hl "GitSignsChange" + :text "▎" + :numhl "GitSignsChangeNr" + :linehl "GitSignsChangeLn" } - delete { - hl "GitSignsDelete" - text "契" - numhl "GitSignsDeleteNr" - linehl "GitSignsDeleteLn" + :delete { + :hl "GitSignsDelete" + :text "契" + :numhl "GitSignsDeleteNr" + :linehl "GitSignsDeleteLn" } - topdelete { - hl "GitSignsDelete" - text "契" - numhl "GitSignsDeleteNr" - linehl "GitSignsDeleteLn" + :topdelete { + :hl "GitSignsDelete" + :text "契" + :numhl "GitSignsDeleteNr" + :linehl "GitSignsDeleteLn" } - changedelete { - hl "GitSignsChange" - text "▎" - numhl "GitSignsChangeNr" - linehl "GitSignsChangeLn"}}) + :changedelete { + :hl "GitSignsChange" + :text "▎" + :numhl "GitSignsChangeNr" + :linehl "GitSignsChangeLn"}}) (let [gitsigns (util.load-plugin :gitsigns)] (gitsigns.setup { |