File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ M.build = function(theme)
40
40
41
41
-- Write the sanitized theme to cache
42
42
cache :write (vim .json .encode (sanitized_theme ))
43
- util .notify (" Cache file written to " .. theme_cache_file )
43
+ util .notify (" Cache file written to ** " .. theme_cache_file .. " ** " )
44
44
end
45
45
46
46
M .load_options = function (theme )
@@ -74,7 +74,7 @@ M.load = function()
74
74
if not cache then
75
75
M .build (require (" cyberdream.theme" ).setup ())
76
76
local notify = vim .defer_fn (function ()
77
- util .notify (" Building cache...\n A restart may be required for changes to take effect." )
77
+ util .notify (" Building cache...\n A restart _may_ be required for changes to take effect." )
78
78
M .load ()
79
79
end , 1000 )
80
80
return notify
@@ -89,7 +89,7 @@ M.load = function()
89
89
if not vim .deep_equal (theme .config , sanitize_config (config .options )) then
90
90
M .build (require (" cyberdream.theme" ).setup ())
91
91
local notify = vim .defer_fn (function ()
92
- util .notify (" Building cache...\n A restart may be required for changes to take effect." )
92
+ util .notify (" Building cache...\n A restart _may_ be required for changes to take effect." )
93
93
M .load ()
94
94
end , 1000 )
95
95
return notify
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ local M = {}
10
10
--- @param title ? string
11
11
function M .notify (message , level , title )
12
12
level = level or " info"
13
- title = title or " cyberdream.nvim"
13
+ title = title or " cyberdream.nvim"
14
14
local level_int = level == " info" and 2 or level == " warn" and 3 or 4
15
15
16
16
vim .notify (message , level_int , { title = title })
You can’t perform that action at this time.
0 commit comments