diff options
| author | christianchiarulli <[email protected]> | 2021-07-05 16:26:31 -0400 | 
|---|---|---|
| committer | christianchiarulli <[email protected]> | 2021-07-05 16:26:31 -0400 | 
| commit | 20485971641a9d916640ccad05586a641c984ed6 (patch) | |
| tree | d397a3a9adba502b4c26b802d897b8310972f76f /lua/lv-gitsigns | |
| parent | 56e82dac4497293541099185441485dd31e98dc8 (diff) | |
| parent | a469c710bfc01f291df68dba40464caaa2b496da (diff) | |
Merge branch 'master' of github.com:ChristianChiarulli/LunarVim into stable
Diffstat (limited to 'lua/lv-gitsigns')
| -rw-r--r-- | lua/lv-gitsigns/init.lua | 94 | 
1 files changed, 47 insertions, 47 deletions
| diff --git a/lua/lv-gitsigns/init.lua b/lua/lv-gitsigns/init.lua index 7f0db565..7f1fbff4 100644 --- a/lua/lv-gitsigns/init.lua +++ b/lua/lv-gitsigns/init.lua @@ -1,53 +1,53 @@  local M = {}  M.config = function() -    require('gitsigns').setup { -        signs = { -            -- TODO add hl to colorscheme -            add = { -                hl = 'GitSignsAdd', -                text = '▎', -                numhl = 'GitSignsAddNr', -                linehl = 'GitSignsAddLn' -            }, -            change = { -                hl = 'GitSignsChange', -                text = '▎', -                numhl = 'GitSignsChangeNr', -                linehl = 'GitSignsChangeLn' -            }, -            delete = { -                hl = 'GitSignsDelete', -                text = '契', -                numhl = 'GitSignsDeleteNr', -                linehl = 'GitSignsDeleteLn' -            }, -            topdelete = { -                hl = 'GitSignsDelete', -                text = '契', -                numhl = 'GitSignsDeleteNr', -                linehl = 'GitSignsDeleteLn' -            }, -            changedelete = { -                hl = 'GitSignsChange', -                text = '▎', -                numhl = 'GitSignsChangeNr', -                linehl = 'GitSignsChangeLn' -            } -        }, -        numhl = false, -        linehl = false, -        keymaps = { -            -- Default keymap options -            noremap = true, -            buffer = true -        }, -        watch_index = {interval = 1000}, -        sign_priority = 6, -        update_debounce = 200, -        status_formatter = nil, -- Use default -        use_decoration_api = false -    } +  require("gitsigns").setup { +    signs = { +      -- TODO add hl to colorscheme +      add = { +        hl = "GitSignsAdd", +        text = "▎", +        numhl = "GitSignsAddNr", +        linehl = "GitSignsAddLn", +      }, +      change = { +        hl = "GitSignsChange", +        text = "▎", +        numhl = "GitSignsChangeNr", +        linehl = "GitSignsChangeLn", +      }, +      delete = { +        hl = "GitSignsDelete", +        text = "契", +        numhl = "GitSignsDeleteNr", +        linehl = "GitSignsDeleteLn", +      }, +      topdelete = { +        hl = "GitSignsDelete", +        text = "契", +        numhl = "GitSignsDeleteNr", +        linehl = "GitSignsDeleteLn", +      }, +      changedelete = { +        hl = "GitSignsChange", +        text = "▎", +        numhl = "GitSignsChangeNr", +        linehl = "GitSignsChangeLn", +      }, +    }, +    numhl = false, +    linehl = false, +    keymaps = { +      -- Default keymap options +      noremap = true, +      buffer = true, +    }, +    watch_index = { interval = 1000 }, +    sign_priority = 6, +    update_debounce = 200, +    status_formatter = nil, -- Use default +    use_decoration_api = false, +  }  end  return M | 
