mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
Update nvim
This commit is contained in:
parent
a01c2ab92c
commit
093639a28a
24 changed files with 102 additions and 119 deletions
18
config/nvim/lua/plug/gitsigns.lua
Normal file
18
config/nvim/lua/plug/gitsigns.lua
Normal 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,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue