lite/data/core/config.lua
Alessandro Mauri a5e90420e8 added horizontal scroll
added the ability to scroll gorizontally, in two ways:
	- with a touchpad
	- holding "alt" and scrolling
also made the scroll senitivity configurable for both directions
2021-07-06 23:56:43 +02:00

23 lines
594 B
Lua

local config = {}
config.project_scan_rate = 5
config.fps = 60
config.max_log_items = 80
config.message_timeout = 3
config.mouse_wheel_scroll_y = 50 * SCALE
config.mouse_wheel_scroll_x = 30 * SCALE
config.file_size_limit = 10
config.ignore_files = "^%."
config.symbol_pattern = "[%a_][%w_]*"
config.non_word_chars = " \t\n/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-"
config.undo_merge_timeout = 0.3
config.max_undos = 10000
config.highlight_current_line = true
config.line_height = 1.2
config.indent_size = 8
config.tab_type = "hard"
config.line_limit = 80
config.restore_last_dir = true
return config