-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tcshrc
36 lines (26 loc) · 936 Bytes
/
.tcshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#############################################################################
##
## .tcshrc
##
## Author: Zhenbin (Ben) Wu ( [email protected])
##
## This is my .tcshrc file, part of the code from the TCSHRC project
## at http://tcshrc.sourceforge.net
#############################################################################
# aliases for interactive shells
source $HOME/.tcsh/tcsh_aliases
# settings for interactive shells
source $HOME/.tcsh/tcsh_set
# bindkeys for interactive shells
source $HOME/.tcsh/tcsh_bindkey
# completions for interactive shells
source $HOME/.tcsh/tcsh_complete
# special for cdf interactive shells
source $HOME/.tcsh/tcsh_cdf
# special for root
source $HOME/.tcsh/mythisroot.csh
setenv PATH $HOME/.tcsh/bin:${PATH}
if (-f ~/.tcsh/tcsh_color) then
set color
setenv LS_COLORS `awk '! /^#|^$|\t/ {printf $1"="$2":"}' ~/.tcsh/tcsh_color`
endif