diff options
author | Santo Cariotti <santo@dcariotti.me> | 2021-10-25 21:21:46 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2021-10-25 21:21:46 +0200 |
commit | eca4f3188f745caf29156fc2b5241e85a7886582 (patch) | |
tree | ff5249930ba6415717350aaa17632a89c64cf4a0 /nvim | |
parent | a97526b6316ccd434c0a9065f4a6d1f112c56dd8 (diff) |
nvim: add git lua
Diffstat (limited to 'nvim')
-rw-r--r-- | nvim/lua/git.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/lua/git.lua b/nvim/lua/git.lua index 8bc3c56..4a39d19 100644 --- a/nvim/lua/git.lua +++ b/nvim/lua/git.lua @@ -1,7 +1,7 @@ require('gitsigns').setup { signs = { 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='GitSignsDele.setup()teNr', linehl='GitSignsDeleteLn'}, topdelete = {hl = 'GitSignsDelete', text = '-', numhl='GitSignsDeleteNr', linehl='GitSignsDeleteLn'}, changedelete = {hl = 'GitSignsChange', text = '~', numhl='GitSignsChangeNr', linehl='GitSignsChangeLn'}, |