Commit: f1cacadb9d18317a9efc19ba3c3f8309d4ac0fdf
Parent: e5e9e17ffdea8f89633e92bd56cd5a8bb13481b5
Author: Randy Palamar
Date: Sun, 24 May 2026 08:52:22 -0600
vis: set numberwidth, escdelay
Diffstat:
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/.config/vis/visrc.lua b/.config/vis/visrc.lua
@@ -58,7 +58,10 @@ end
vis.events.subscribe(vis.events.INIT, function()
vis:command("set theme term")
- vis.options = { autoindent = true }
+ vis.options = {
+ autoindent = true,
+ escdelay = 1,
+ }
local m, cmd = vis.modes, util.command
vis:map(m.NORMAL, " f", "v$:|furigana<Enter><Escape>")
@@ -123,9 +126,10 @@ extra_word_lists['c'] = {
vis.events.subscribe(vis.events.WIN_OPEN, function(win)
win.options = {
- colorcolumn = 100,
+ colorcolumn = 100,
relativenumbers = true,
- tabwidth = tabwidth,
+ numberwidth = 6,
+ tabwidth = tabwidth,
}
local m, cmd = vis.modes, util.command