9 lines
125 B
Lua
9 lines
125 B
Lua
|
local status_ok, twilight = pcall(require, "twilight")
|
||
|
if not status_ok then
|
||
|
return
|
||
|
end
|
||
|
|
||
|
twilight.setup {
|
||
|
context = 2,
|
||
|
}
|