forked from TaroNuke/Simply-Love-NotITG-ver.-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
config.lua
61 lines (51 loc) · 1.24 KB
/
config.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
-- config.lua:
-- Read contents by doing stitch("config").YourPref
-- For console, instructions further down
layout = "QwertyUS"
console = "9"
deep = "!"
bare = ","
skip = 10
wraps = {
" ", "{", "}", "[", "]",
",", ":", "(", ")", "+",
"*", "-", "/", "^", "="
}
-- 1: off
-- 2: YOU DIED
-- 3: Wasted
-- Scroll through them with Action5
FailOverlay = 2
-- Used by OpenITG only; see NotITGPrefs.ini for the NotITG variant
-- Hides song title and banner in ScreenEdit
EditorShowSongTitle=true
-- Debug: Lua heap viewer
ViewGC = false
--[[
layout:
The keyboard layout you use.
Available layouts:
QwertyUS
QwertyUK
QwertyNO
QwertzSwissFR
QwertzSwissDE
You can add more in /(theme)/lua/layout.lua
console:
Hold ctrl+<key> to open the console
Example:
console = "`"
Would make ctrl+` as the console toggle
deep:
Prefix used for deep prints
Must be a single char
bare:
Prefix for bare prints
Must be single char
skip:
How many characters you want your cursor to skip when holding shift
wraps:
Symbols where it is apropriate to place word wrapping
The newline will be placed after the symbol
Word wrapped newlines won't affect code, it's purely visual
]]