lite-xl/data/core/config.lua

22 lines
546 B
Lua
Raw Normal View History

2019-12-28 12:16:32 +01:00
local config = {}
config.project_scan_rate = 5
config.fps = 60
config.max_log_items = 80
2019-12-28 12:16:32 +01:00
config.message_timeout = 3
config.mouse_wheel_scroll = 50 * SCALE
2019-12-28 12:16:32 +01:00
config.file_size_limit = 10
config.ignore_files = "^%."
2019-12-28 12:16:32 +01:00
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 = 2
config.tab_type = "soft"
config.line_limit = 80
config.max_symbols = 2000
2019-12-28 12:16:32 +01:00
return config