summaryrefslogtreecommitdiff
path: root/lua/onedarker/init.lua
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2021-10-22 23:46:43 +0200
committerGitHub <[email protected]>2021-10-22 23:46:43 +0200
commita96a44a16a46dae0aee0f5689ccfe644d2a27c0f (patch)
treec7c9ee30b2d86437df4f723af7c9b557c66fe9d6 /lua/onedarker/init.lua
parent10df0b5ffd0fd96b210747e9169dad08c81dca1b (diff)
[fix] fix notify's highlight groups and make it optional (#1827)
Diffstat (limited to 'lua/onedarker/init.lua')
-rw-r--r--lua/onedarker/init.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/lua/onedarker/init.lua b/lua/onedarker/init.lua
index 73043ac3..dec56afa 100644
--- a/lua/onedarker/init.lua
+++ b/lua/onedarker/init.lua
@@ -13,6 +13,7 @@ local highlights = require "onedarker.highlights"
local Treesitter = require "onedarker.Treesitter"
local markdown = require "onedarker.markdown"
local Whichkey = require "onedarker.Whichkey"
+local Notify = require "onedarker.Notify"
local Git = require "onedarker.Git"
local LSP = require "onedarker.LSP"
local diff = require "onedarker.diff"
@@ -22,6 +23,7 @@ local skeletons = {
Treesitter,
markdown,
Whichkey,
+ Notify,
Git,
LSP,
diff,