mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
7 lines
155 B
Bash
Executable File
7 lines
155 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
case "$1" in
|
|
*) bat --force-colorization --paging=never --style=changes,numbers \
|
|
--terminal-width $(($2 - 3)) "$1" && false ;;
|
|
esac
|