i broke flit with a leap option
This commit is contained in:
parent
7be125afdc
commit
167d3babb0
|
@ -2,6 +2,7 @@ local opt = vim.opt
|
|||
local g = vim.g
|
||||
g.maplocalleader = ";"
|
||||
|
||||
opt.mouse = "" -- hardcore vim mode, disable the mouse
|
||||
opt.signcolumn = "yes"
|
||||
opt.spelllang = "en,de"
|
||||
opt.clipboard = "" -- don't just use the system clipboard
|
||||
|
|
|
@ -52,10 +52,6 @@ local plugins = {
|
|||
lazy = false,
|
||||
config = function()
|
||||
require("core.utils").load_mappings "leap"
|
||||
local leap = require "leap"
|
||||
leap.opts.highlight_unlabeled_phase_one_targets = true
|
||||
leap.opts.safe_labels = "sfnutwehjkl/SFNLHMUGTZ?"
|
||||
leap.opts.labels = "sfnjklhodweimbuyvrgtaqpcxz?"
|
||||
end,
|
||||
},
|
||||
{
|
||||
|
@ -65,7 +61,7 @@ local plugins = {
|
|||
require("flit").setup {
|
||||
keys = { f = "f", F = "F", t = "t", T = "T" },
|
||||
-- A string like "nv", "nvo", "o", etc.
|
||||
labeled_modes = "nvo",
|
||||
labeled_modes = "v",
|
||||
multiline = true,
|
||||
-- Like `leap`s similar argument (call-specific overrides).
|
||||
-- E.g.: opts = { equivalence_classes = {} }
|
||||
|
|
Loading…
Reference in New Issue