-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig.lua
32 lines (21 loc) · 887 Bytes
/
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
local config = require "core.config"
config.non_WORD_chars = " \t\n"
config.max_log_items = 1000
config.vibe = {}
config.vibe.clipboard_ring_max = 10
config.vibe.debug_str_max = 30
config.vibe.misc_str_max_depth = 8
config.vibe.misc_str_max_list = 4
config.vibe.max_stroke_sugg = 10
config.vibe.stroke_sug_delay = 0.500
-- set this to nil to stop showing. Or to sth else)
config.vibe.permanent_status_tooltip = "Alt-h for help and it's scroll. i to insert, escape or ctrl+[ to normal"
-- max line difference to join jumplist events
config.vibe.history_max_dline_to_join = 5
-- max time difference to join jumplist events
config.vibe.history_max_dt_to_join = 0.5
-- max number of inline project search items to show
config.vibe.inline_search_maxN = 100
-- whether or not try and evaluate input-to-be-executed online
config.vibe.exec_input_online_execute = true
return config