diff options
author | Subho Banerjee <[email protected]> | 2021-09-26 02:20:50 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2021-09-26 10:50:50 +0330 |
commit | 61b56a7bb19771247fc2c40b453d0f905581125e (patch) | |
tree | 0c3c922fa28e61ea00592b019f5003f67219369b /lua/onedarker/init.lua | |
parent | 464f092ada7b6e54f5ad65aea0ae3c1b55f618f4 (diff) |
fix: Adding `Diff*` highlight groups in onedarker (#1594)
Fixes #1576
Diffstat (limited to 'lua/onedarker/init.lua')
-rw-r--r-- | lua/onedarker/init.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lua/onedarker/init.lua b/lua/onedarker/init.lua index 852e0103..73043ac3 100644 --- a/lua/onedarker/init.lua +++ b/lua/onedarker/init.lua @@ -15,6 +15,7 @@ local markdown = require "onedarker.markdown" local Whichkey = require "onedarker.Whichkey" local Git = require "onedarker.Git" local LSP = require "onedarker.LSP" +local diff = require "onedarker.diff" local skeletons = { highlights, @@ -23,6 +24,7 @@ local skeletons = { Whichkey, Git, LSP, + diff, } for _, skeleton in ipairs(skeletons) do |