mirror of
https://github.com/acedanger/dotfiles.git
synced 2025-12-05 22:30:13 -08:00
19 lines
340 B
Lua
19 lines
340 B
Lua
---@module "picker.assets.fonts.reset"
|
|
---@author sravioli, akthe-at
|
|
---@license GNU-GPLv3
|
|
|
|
---@class PickList
|
|
local M = {}
|
|
|
|
M.get = function()
|
|
return { id = "reset", label = "Restore fonts to default" }
|
|
end
|
|
|
|
M.activate = function(Config, _)
|
|
for key, value in pairs(require "config.font") do
|
|
Config[key] = value
|
|
end
|
|
end
|
|
|
|
return M
|