This commit is contained in:
kento2 2026-06-03 18:41:16 +02:00
parent 4d1db92944
commit 7313a85b6d
11 changed files with 390 additions and 14 deletions

View file

@ -1,5 +1,5 @@
[general]
fontname=Iosevka 13
fontname=IBM Plex Mono 13
selchars=-A-Za-z0-9,./?%&#:_
scrollback=1000
bgcolor=rgb(0,0,0)
@ -41,8 +41,8 @@ tabwidth=100
[shortcut]
new_window_accel=<Primary><Shift>n
new_tab_accel=<Alt>t
close_tab_accel=<Alt>w
new_tab_accel=<Primary><Shift>t
close_tab_accel=<Primary><Shift>w
close_window_accel=<Primary><Shift>q
copy_accel=<Primary><Shift>c
paste_accel=<Primary><Shift>v

BIN
files/.config/tanjiro.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 294 KiB

View file

@ -4,6 +4,8 @@ local lexers = vis.lexers
local colors = {
['bg'] = '#010101',
['fg'] = '#aaaaaa',
--['bg'] = '#eeeeee',
--['fg'] = '#010101',
['blk'] = '#333333',
['bblk'] = '#4f4f4f',
['red'] = '#8c4665',
@ -22,8 +24,8 @@ local colors = {
['bwht'] = '#c0c0c0',
-- special colors
['dim1'] = '#191919',
['dim2'] = '#262626'
['dim1'] = '#111111',
['dim2'] = '#010101'
}
-- general styles

View file

@ -22,6 +22,16 @@ vis.events.subscribe(vis.events.INIT, function()
vis:map(vis.modes.NORMAL, ' p', '"+p')
vis:map(vis.modes.NORMAL, ' d', '"+d')
vis:map(vis.modes.NORMAL, ' x', '"+x')
vis:map(vis.modes.NORMAL, ' m', function()
vis:command("!make; read a")
end)
vis:map(vis.modes.NORMAL, ' c', function()
vis:command("!make check; read a")
end)
vis:map(vis.modes.NORMAL, ' t', function()
vis:command("!make test; read a")
end)
end)
vis.events.subscribe(vis.events.WIN_OPEN, function(win)