about summary refs log tree commit diff
path: root/fnl/nvrc/packs/gitsigns.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'fnl/nvrc/packs/gitsigns.fnl')
-rw-r--r--fnl/nvrc/packs/gitsigns.fnl12
1 files changed, 0 insertions, 12 deletions
diff --git a/fnl/nvrc/packs/gitsigns.fnl b/fnl/nvrc/packs/gitsigns.fnl
deleted file mode 100644
index c7dbed1..0000000
--- a/fnl/nvrc/packs/gitsigns.fnl
+++ /dev/null
@@ -1,12 +0,0 @@
-(import-macros {: map!} :nvrc.macro.keymap)
-
-(local {: setup} (require :gitsigns))
-
-(setup {:signs {:add {:text "+"}
-                :change {:text "~"}
-                :delete {:text "_"}
-                :topdelete {:text "‾"}
-                :changedelete {:text "~"}}
-        :on_attach (fn [bufnr]
-                      (map! [n :expr] "]c" "&diff ? ']c' : '<cmd>Gitsigns next_hunk<cr>'")
-                      (map! [n :expr] "[c" "&diff ? '[c' : '<cmd>Gitsigns prev_hunk<cr>'"))})