mirror of
https://github.com/xHyroM/dotfiles.git
synced 2024-11-22 06:31:06 +01:00
feat: alias cat & ls
This commit is contained in:
parent
84ec849e95
commit
f1ce967a58
1 changed files with 5 additions and 2 deletions
7
.bashrc
7
.bashrc
|
@ -3,7 +3,10 @@
|
||||||
# If not running interactively, don't do anything
|
# If not running interactively, don't do anything
|
||||||
[[ $- != *i* ]] && return
|
[[ $- != *i* ]] && return
|
||||||
|
|
||||||
alias ls='ls --color=auto'
|
# Aliases
|
||||||
|
alias ls="lsd"
|
||||||
|
alias cat="bat"
|
||||||
|
|
||||||
PS1='[\u@\h \W]\$ '
|
PS1='[\u@\h \W]\$ '
|
||||||
|
|
||||||
eval "$(starship init bash)"
|
eval "$(starship init bash)"
|
||||||
|
@ -11,4 +14,4 @@ source ~/.local/share/blesh/ble.sh
|
||||||
|
|
||||||
# bun
|
# bun
|
||||||
export BUN_INSTALL="$HOME/.bun"
|
export BUN_INSTALL="$HOME/.bun"
|
||||||
export PATH=$BUN_INSTALL/bin:$PATH
|
export PATH=$BUN_INSTALL/bin:$PATH:~/.local/bin:~/go/bin
|
||||||
|
|
Loading…
Reference in a new issue