added less colors

This commit is contained in:
Shihaam Abdul Rahman 2022-12-14 20:38:29 +05:00
parent 81f466d471
commit 85e5fa4dbf
Signed by: shihaam
GPG Key ID: 3B007D22E5584980

8
bashrc
View File

@ -17,11 +17,15 @@ cdl(){ cd $(cat ~/.cache/whereami);};cdl
#alias ssh='TERM=xterm ssh -o StrictHostKeyChecking=no'
#alias ssh='TERM=xterm ssh'
#alias ssh='TERM=xterm-256color ssh'
alias ls='ls --color=always'
alias grep='grep --color=always'
alias nano='nano -i'
alias hdd='cd /mnt/hdd'
#Adding output colors
alias ls='ls --color=always'
alias grep='grep --color=always'
alias less='less -R'
#do math in shell
math(){ echo $1 | bc;}