Skip to content

Commit

Permalink
Merge pull request #28 from projekt0n/dev
Browse files Browse the repository at this point in the history
Neogit support (releated to #16)
  • Loading branch information
ful1e5 committed Jul 14, 2021
2 parents eb35f2b + f82a928 commit ab07574
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added

- `folded` colors are configurable
- [Neogit](https://github.com/TimUntersberger/neogit) support

### Fixes

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@
### Plugin Support

- [TreeSitter](https://github.com/nvim-treesitter/nvim-treesitter)
- [Telescope](https://github.com/nvim-telescope/telescope.nvim)
- [LSP Diagnostics](https://neovim.io/doc/user/lsp.html)
- [LSP Trouble](https://github.com/folke/lsp-trouble.nvim)
- [Git Signs](https://github.com/lewis6991/gitsigns.nvim)
- [Telescope](https://github.com/nvim-telescope/telescope.nvim)
- [Neogit](https://github.com/TimUntersberger/neogit)
- [NvimTree](https://github.com/kyazdani42/nvim-tree.lua)
- [Lualine](https://github.com/hoob3rt/lualine.nvim)

Expand Down
12 changes: 6 additions & 6 deletions lua/github-theme/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -351,13 +351,13 @@ function M.setup(config)
diffIndexLine = {fg = c.magenta},

-- Neogit
NeogitBranch = {fg = c.magenta},
NeogitRemote = {fg = c.magenta},
NeogitBranch = {fg = c.syntax.keyword},
NeogitRemote = {fg = c.syntax.keyword},
NeogitHunkHeader = {bg = c.bg_highlight, fg = c.fg},
NeogitHunkHeaderHighlight = {bg = c.fg_gutter, fg = c.blue},
NeogitDiffContextHighlight = {bg = util.darken(c.fg_gutter, 0.5), fg = c.fg},
NeogitDiffDeleteHighlight = {fg = c.git.delete, bg = c.diff.delete},
NeogitDiffAddHighlight = {fg = c.git.add, bg = c.diff.add},
NeogitHunkHeaderHighlight = {bg = c.bg_highlight, fg = c.blue, style = "italic"},
NeogitDiffContextHighlight = {bg = c.bg, fg = c.fg},
NeogitDiffDeleteHighlight = {fg = c.diff.delete_fg, bg = c.diff.delete},
NeogitDiffAddHighlight = {fg = c.diff.add_fg, bg = c.diff.add},

-- GitGutter
GitGutterAdd = {fg = c.gitSigns.add}, -- diff mode: Added line |diff.txt|
Expand Down

0 comments on commit ab07574

Please sign in to comment.