File tree Expand file tree Collapse file tree 4 files changed +17
-0
lines changed
Expand file tree Collapse file tree 4 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5151- Support [ fzf-lua] ( https://github.com/ibhagwan/fzf-lua ) plugin highlights #221
5252- Support [ neo-tree.nvim] ( https://github.com/nvim-neo-tree/neo-tree.nvim ) plugin highlights #221
5353- Support [ dap-ui] ( https://github.com/rcarriga/nvim-dap-ui ) plugin highlights #207
54+ - Support [ diffchar.vim] ( https://github.com/rickhowe/diffchar.vim ) plugin highlights #216
5455
5556### Issues Fix
5657
Original file line number Diff line number Diff line change @@ -199,6 +199,7 @@ vim.cmd('colorscheme github_dark')
199199 [ coc.nvim] ( https://github.com/neoclide/coc.nvim ) ,
200200 [ dap-ui] ( https://github.com/rcarriga/nvim-dap-ui ) ,
201201 [ dashboard-nvim] ( https://github.com/glepnir/dashboard-nvim ) ,
202+ [ diffchar.vim] ( https://github.com/rickhowe/diffchar.vim ) ,
202203 [ diffview.nvim] ( https://github.com/sindrets/diffview.nvim ) ,
203204 [ fidget.nvim] ( https://github.com/j-hui/fidget.nvim ) ,
204205 [ fsread.nvim] ( https://github.com/nullchilly/fsread.nvim ) ,
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ M.module_names = {
5656 ' cmp' ,
5757 ' coc' ,
5858 ' dapui' ,
59+ ' diffchar' ,
5960 ' dashboard' ,
6061 ' diagnostic' ,
6162 ' fidget' ,
Original file line number Diff line number Diff line change 1+ -- https://github.com/rickhowe/diffchar.vim
2+
3+ local M = {}
4+
5+ function M .get (spec , config , opts )
6+ return {
7+ DiffAdd = { link = ' diffAdded' },
8+ DiffChange = { link = ' diffChanged' },
9+ DiffDelete = { link = ' diffRemoved' },
10+ DiffText = { fg = spec .fg1 , bg = spec .bg2 },
11+ }
12+ end
13+
14+ return M
You can’t perform that action at this time.
0 commit comments