dots-of-war/nvim/.config/nvim/fnl/dots/plugins/gitsigns.fnl
2023-03-26 10:55:59 +02:00

20 lines
593 B
Fennel

(module dots.plugins.gitsigns
{autoload {utils dots.utils
colors dots.colors
gitsigns gitsigns}})
; https://github.com/lewis6991/gitsigns.nvim
(gitsigns.setup
{:signs {:add {:text "▍"}
:change {:text "▍"}
:delete {:text "▍"}
:topdelete {:text "▍"}
:changedelete {:text "▍"}}
:keymaps {:noremap true
:buffer true}
:current_line_blame false
:update_debounce 100})
(let [scrollbar-gitsigns (require "scrollbar.handlers.gitsigns")]
(scrollbar-gitsigns.setup))