aboutsummaryrefslogtreecommitdiff
path: root/.tcshrc
blob: 481bbc6f93d32285438ce689d0698e2a4c8c2540 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env tcsh

"$HOME/.profile"

set BAT=`which bat || which batcat`

if ( "$BAT" != "" ) then
	alias cat "$BAT -p"
endif

alias cls clear
alias ls `which lsd || echo "ls -h -F --color=auto"`
alias sudo `which doas || which sudo || echo "su -c"`

set STARSHIP=`which starship`

if ( "$STARSHIP" != "" ) then
	eval `starship init tcsh`
endif