Update nvim

This commit is contained in:
Smirnov Alexander 2021-06-10 19:09:35 +03:00
parent a01c2ab92c
commit 093639a28a
24 changed files with 102 additions and 119 deletions

View file

@ -0,0 +1,18 @@
require'gitsigns'.setup {
signs = {
add = {hl = 'GitSignsAdd', text = ''};
change = {hl = 'GitSignsChange', text = ''};
delete = {hl = 'GitSignsDelete', text = '_'};
topdelete = {hl = 'GitSignsDelete', text = ''};
changedelete = {hl = 'GitSignsChange', text = '~'};
};
watch_index = {
interval = 1000
};
current_line_blame = true,
sign_priority = 6,
update_debounce = 100,
status_formatter = nil,
use_decoration_api = true,
use_internal_diff = true,
}