From f1ce967a580eb80e9a75e972db80b3c2f71441fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jozef=20Steinh=C3=BCbl?= Date: Sat, 15 Jun 2024 09:43:22 +0200 Subject: [PATCH] feat: alias cat & ls --- .bashrc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.bashrc b/.bashrc index c358084..8b0b80e 100644 --- a/.bashrc +++ b/.bashrc @@ -3,7 +3,10 @@ # If not running interactively, don't do anything [[ $- != *i* ]] && return -alias ls='ls --color=auto' +# Aliases +alias ls="lsd" +alias cat="bat" + PS1='[\u@\h \W]\$ ' eval "$(starship init bash)" @@ -11,4 +14,4 @@ source ~/.local/share/blesh/ble.sh # bun export BUN_INSTALL="$HOME/.bun" -export PATH=$BUN_INSTALL/bin:$PATH +export PATH=$BUN_INSTALL/bin:$PATH:~/.local/bin:~/go/bin