5e82c7122543e2452e3dff82d2114c7a5b561f9a
David Blume Fixed when /etc bashrc gets...

David Blume authored 8 years ago

1) if [[ $(uname -s) != Darwin* ]] && [ -f /etc/bashrc ]; then
2)     # Fedora but not Macintosh requires explicit sourcing of /etc/bashrc
3)     # On Debian, it's /etc/bash.bashrc, but it doesn't have to be sourced here.
4)     . /etc/bashrc
5) fi
6) 
David Blume Let the prompt show up to f...

David Blume authored 6 years ago

7) export PROMPT_DIRTRIM=4
David Blume New PS1 with error detectio...

David Blume authored 6 years ago

8) if [[ -n $SSH_CLIENT ]]; then
David Blume Use a green checkmark or re...

David Blume authored 6 years ago

9)     export PS1='$(if [ $? -eq 0 ]; then echo -e "\[\e[32m\]\xe2\x9c\x93"; else echo -e "\[\e[31m\]\xe2\x9c\x97"; fi) \[\e[38;5;242m\]\h:\w$\[\e[0m\] '
David Blume New PS1 with error detectio...

David Blume authored 6 years ago

10) else
David Blume Use a green checkmark or re...

David Blume authored 6 years ago

11)     export PS1='$(if [ $? -eq 0 ]; then echo -e "\[\e[32m\]\xe2\x9c\x93"; else echo -e "\[\e[31m\]\xe2\x9c\x97"; fi) \[\e[38;5;242m\]\w$\[\e[0m\] '
David Blume New PS1 with error detectio...

David Blume authored 6 years ago

12) fi
13) 
14) set -o vi
David Blume first commit

David Blume authored 8 years ago

15) 
16) add_to_path() {
17)     if [ -d "$1" ] && [[ ! $PATH =~ (^|:)$1(:|$) ]]; then
18)         PATH+=:$1
19)     fi
20) }
21) 
22) # if this is a CygWin .bashrc, then set CygWin's commands first in PATH
23) # because link.exe and find.exe exist in Windows's path.
24) # Add /usr/lib/lapack at the end so python's numpy can find lapack_lite
25) # (Note: BSD bash, used by OS X doesn't have the "substr" test for expr.)
26) if [[ $(uname -s) == CYGWIN* ]]; then
David Blume Use spaces instead of tabs.

David Blume authored 8 years ago

27)     PATH=/usr/local/bin:/usr/bin:$PATH
28)     PATH=${PATH//":/usr/local/bin:/usr/bin"/} # delete any instances in middle
29)     add_to_path /usr/lib/lapack
30)     ulimit -n 1024 # for "duplicity"
David Blume first commit

David Blume authored 8 years ago

31) fi
32) 
David Blume whitespace

David Blume authored 6 years ago

33) # change the color of directories in the ls command
David Blume Refactor .bashrc to keep di...

David Blume authored 8 years ago

34) if [[ $(uname -s) == Darwin* ]]; then
35)     export LSCOLORS=gxfxcxdxbxegedabagacad
36)     export CLICOLOR=1
37) else
38)     # After executing: dircolors -p > .dircolors
39)     # Lighten the color of directories from blue to light blue
40)     # sed -i '/# directory/c\DIR 00;36 # directory' .dircolors
41)     if [ -x /usr/bin/dircolors ]; then
42)         test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
43)         alias ls='ls --color=auto'
44)     fi
David Blume first commit

David Blume authored 8 years ago

45) fi
46) 
David Blume Add .vimrc tab values for ....

David Blume authored 7 years ago

47) export P4DIFF='vim -d'  # Override from the command line: "P4DIFF=; p4 diff main.py"
David Blume Set vim as editor for cscope

David Blume authored 6 years ago

48) export CSCOPE_EDITOR=vim
David Blume Add .vimrc tab values for ....

David Blume authored 7 years ago

49) 
David Blume Add alias for colors in ls...

David Blume authored 8 years ago

50) alias grep='grep --color=auto'
51) alias fgrep='fgrep --color=auto'
52) alias egrep='egrep --color=auto'
53) 
54) # colored GCC warnings and errors
55) export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
56) 
David Blume first commit

David Blume authored 8 years ago

57) # Add to PATH only if not already in PATH.
58) add_to_path $HOME/bin
59) 
60) alias findinpyfiles="find . -name \*.py -print0 | xargs -0 grep -nI"
David Blume Add a few c++ aliases, and...

David Blume authored 8 years ago

61) alias findinchppfiles="find . -type f \( -name \*.[ch]pp -or -name \*.[ch] \) -print0 | xargs -0 grep -nI"
62) alias findincppfiles="find . -type f \( -name \*.cpp -or -name \*.c \) -print0 | xargs -0 grep -nI"
63) alias findinhppfiles="find . -type f \( -name \*.hpp -or -name \*.h \) -print0 | xargs -0 grep -nI"
64) 
65) alias clip="expand | cut -b1-\$COLUMNS"
David Blume Optionally source a .localr...

David Blume authored 7 years ago

66) 
David Blume Add alias for httpie https

David Blume authored 6 years ago

67) # For httpie: https://github.com/jakubroztocil/httpie#installation
68) alias https='http --default-scheme=https'
69) 
David Blume Forgot a corresponding chan...

David Blume authored 7 years ago

70) if [ -f $HOME/.localrc ]; then
David Blume Specify path for .localrc

David Blume authored 7 years ago

71)     source $HOME/.localrc