32 lines
506 B
Bash
32 lines
506 B
Bash
#
|
|
# ~/.bashrc
|
|
#
|
|
|
|
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
|
|
alias ls='ls --color=auto'
|
|
alias grep='grep --color=auto'
|
|
PS1='[\u@\h \W]\$ '
|
|
|
|
alias ll="ls -la"
|
|
alias l="ll"
|
|
|
|
alias ..="cd .."
|
|
|
|
alias m="micro"
|
|
alias sm="sudo micro"
|
|
|
|
alias gita="git add ."
|
|
alias gitc="git commit -m"
|
|
alias gitp="git push"
|
|
|
|
alias icat="kitten icat"
|
|
alias cls="clear"
|
|
|
|
alias t="wd"
|
|
|
|
eval "$(starship init bash)"
|
|
|
|
fastfetch --logo-color-1 red --logo-color-2 red --color red -l ~/Dotfiles/pin.txt
|