lite/data/core/config.lua
Alessandro Mauri 364df2e1c8 project directory changes
add binding to change project directory: ctrl+shift+o
save and restore previous direcotry, toggle behaviour with:
	config.restore_last_dir
core:open_user_module now opens the right path
2021-07-05 20:44:07 +02:00

22 lines
551 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 = 50 * 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