From d9c45e9bd2b893e761f4c24604ed0ed0c8cc2d8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Sun, 24 Nov 2019 10:48:34 +0000 Subject: [PATCH] Do not print line numbers in cat --- nixos/programs/zsh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/programs/zsh.nix b/nixos/programs/zsh.nix index c2bd0a41..6cc2164b 100644 --- a/nixos/programs/zsh.nix +++ b/nixos/programs/zsh.nix @@ -60,6 +60,6 @@ ZSH_TMUX_AUTOSTART=true; GOPATH="$HOME/go"; }; - shellAliases = { tmate = "tmux detach-client -E 'tmate;tmux'"; cat = "bat"; }; + shellAliases = { tmate = "tmux detach-client -E 'tmate;tmux'"; cat = "bat -p"; }; }; }