11 lines
296 B
Lua
11 lines
296 B
Lua
local config = {}
|
|
|
|
config.audible_bell = "Disabled"
|
|
config.ssh_backend = "LibSsh"
|
|
config.check_for_updates = false
|
|
config.exit_behavior = 'Close'
|
|
config.exit_behavior_messaging = 'Verbose'
|
|
config.status_update_interval = 25
|
|
config.default_prog = { '/usr/local/bin/hilbish', '-l' }
|
|
|
|
return config
|