You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
239 B
Lua
13 lines
239 B
Lua
5 months ago
|
package.path = package.path .. ';../?.lua'
|
||
|
local silo = require 'silo'
|
||
|
local sutils = require 'silo-utils'
|
||
|
|
||
|
local config = sutils.enhance_dircfg {
|
||
|
path = silo.config.firefox_profile,
|
||
|
mode = "exclude",
|
||
|
exclude = {},
|
||
|
}
|
||
|
|
||
|
|
||
|
return config
|