.
This commit is contained in:
parent
916ff52966
commit
136aa8bbc7
17 changed files with 227 additions and 191 deletions
15
files/.config/vis/visrc.lua
Normal file
15
files/.config/vis/visrc.lua
Normal 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue