dotfiles

Settings and scripts
git clone git://git.konyahin.xyz/dotfiles
Log | Files | Refs | LICENSE

commit 40c1b811a70c344c07f8bc938b5472be097b7fad
parent bf46d4f0cbfe02c71cf62dca018aa52cbf20a56b
Author: Anton Konyahin <me@konyahin.xyz>
Date:   Tue, 12 Mar 2024 08:19:01 +0300

sh: fix cheat function

Diffstat:
Msh/.config/ksh/kshrc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sh/.config/ksh/kshrc b/sh/.config/ksh/kshrc @@ -74,7 +74,7 @@ jp () { } cheat () { - curl "cheat.sh/$1" | bat + curl "cheat.sh/$1" | less -r } alias reload='. ~/.config/ksh/kshrc'