-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcshrc
51 lines (41 loc) · 1.54 KB
/
cshrc
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#
# ~/.cshrc
#
unset autologout
if (!($?prompt) || !($?term)) exit 0
source ~/.cshrc.arm
######################################################
# Customization #
######################################################
#set prompt="%B[%h]%b %# "
#set prompt2="%B>%b "
umask 027
set history=1000
set savehist=1000
set autolist
set nobeep
set rmstar
set symlinks=ignore
set addsuffix # add / to directories, ' ' otherwise, for file completion
set autoexpand # invoke expand-history function automatically
unset autologout # autologout after <parm1> mins
#set chase_symlinks # resolve links on cd etc
set correct=cmd # auto-correct either the command or whole line
set dextract # extract rather than rotate on pushd
#set fignore # list of file suffices to ignore during completion
set listjobs=long # list all jobs on suspension
set listlinks # resolve links with correct file type
#set listmax # max items to list without clarification
set matchbeep=never # [nomatch|ambiguous|notunique|never]
set pushdtohome # pushd with no args does a cd ~
set pushdsilent # don't print the stack
set showdots # show hidden files in list and completion
set ignoreeof # stop EOF shell logout
set filec # filename complettion
set norebind
alias ls "ls --color=auto -h" #enable thousands grouping and colour
alias ll 'ls -l'
alias lla 'ls -l -A'
set prompt="%{\033[00;33m%}%B[%h] %{\033[00;37m%}%.2%{\033[01;35m%}%# "
# set prompt = `hostname`:`whoami`" \! > "
set path=( $path "/home/jleroy/.local/bin" )