13 lines
342 B
Lua
13 lines
342 B
Lua
if hl.plugin.gloview ~= nil then
|
|
hl.config({plugin = {
|
|
gloview = {
|
|
layout = 'rows',
|
|
blur = 1,
|
|
strip_all_card = true,
|
|
show_special = true,
|
|
above_namespaces = 'quickshell'
|
|
}
|
|
}})
|
|
hl.bind('SUPER + K', hl.plugin.gloview.toggle, {submap_universal = true})
|
|
end
|