mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 05:30:07 +08:00
18 lines
431 B
Lua
18 lines
431 B
Lua
local M = {}
|
|
|
|
M.keys = 'asdghklqwertyuiopzxcvbnmfj'
|
|
M.quit_key = '<Esc>'
|
|
M.perm_method = require'hop.perm'.TrieBacktrackFilling
|
|
M.reverse_distribution = false
|
|
M.teasing = true
|
|
M.jump_on_sole_occurrence = true
|
|
M.case_insensitive = true
|
|
M.create_hl_autocmd = true
|
|
M.current_line_only = false
|
|
M.inclusive_jump = false
|
|
M.uppercase_labels = false
|
|
M.multi_windows = false
|
|
M.hint_position = require'hop.hint'.HintPosition.BEGIN
|
|
|
|
return M
|