-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Load latclient settings from sailor.lua
- Loading branch information
1 parent
f3e0f7e
commit e1973ea
Showing
4 changed files
with
19 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
-- Use the same config file as Sailor | ||
require "conf.conf" | ||
local conf = require "conf.conf" | ||
if not conf.lua_at_client or not conf.lua_at_client.vm then | ||
conf.lua_at_client = { vm = 'starlight'} -- default | ||
end | ||
local conf = { | ||
lua_at_client = { | ||
vm = "starlight", -- starlight is default. Other options are moonshine, lua51js and luavmjs. | ||
vm_url = nil -- allows to set a custom URL for the VM JavaScript files. | ||
} | ||
} | ||
|
||
return conf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters