diff --git a/README.md b/README.md index 060a83d..40e17be 100644 --- a/README.md +++ b/README.md @@ -112,6 +112,7 @@ are currently supported. Please feel free to open a PR to support your favorite plugins. - [Git Signs](https://github.com/lewis6991/gitsigns.nvim) +- [Git Gutter](https://github.com/airblade/vim-gitgutter) - [Indent Blankline](https://github.com/lukas-reineke/indent-blankline.nvim) - [Telescope](https://github.com/nvim-telescope/telescope.nvim) - [Sneak](https://github.com/justinmk/vim-sneak) diff --git a/lua/zenbones/init.lua b/lua/zenbones/init.lua index dddec76..79f7b0f 100644 --- a/lua/zenbones/init.lua +++ b/lua/zenbones/init.lua @@ -264,6 +264,10 @@ local theme = lush(function() GitSignsChange { fg = c.water }, GitSignsDelete { fg = c.rose }, + GitGutterAdd { GitSignsAdd }, + GitGutterChange { GitSignsChange }, + GitGutterDelete { GitSignsDelete }, + IndentBlanklineChar { fg = c.sand.da(12).de(20) }, TelescopeSelection { CursorLine },