This commit is contained in:
kento2 2026-02-03 23:53:12 +01:00
parent 916ff52966
commit 136aa8bbc7
17 changed files with 227 additions and 191 deletions

View file

@ -0,0 +1,15 @@
require("vis")
vis.events.subscribe(vis.events.INIT, function()
vis:command("set theme kento2")
vis:command("map! normal n <vis-motion-search-repeat>")
vis:map(vis.modes.VISUAL, ' y', '"+y')
vis:map(vis.modes.VISUAL, ' p', '"+p')
vis:map(vis.modes.VISUAL, ' d', '"+d')
vis:map(vis.modes.VISUAL, ' x', '"+x')
vis:map(vis.modes.NORMAL, ' y', '"+y')
vis:map(vis.modes.NORMAL, ' p', '"+p')
vis:map(vis.modes.NORMAL, ' d', '"+d')
vis:map(vis.modes.NORMAL, ' x', '"+x')
end)