]> jfr.im git - z_archive/shellstuff.git/blob - bashrc
testing
[z_archive/shellstuff.git] / bashrc
1 TERM=xterm-256color
2 # ~/.bashrc: executed by bash(1) for non-login shells.
3 # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
4 # for examples
5
6 # If not running interactively, don't do anything
7 [ -z "$PS1" ] && return
8
9 # don't put duplicate lines in the history. See bash(1) for more options
10 # don't overwrite GNU Midnight Commander's setting of `ignorespace'.
11 HISTCONTROL=$HISTCONTROL${HISTCONTROL+:}ignoredups
12 # ... or force ignoredups and ignorespace
13 HISTCONTROL=ignoreboth
14
15 # append to the history file, don't overwrite it
16 shopt -s histappend
17
18 # for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
19
20 # check the window size after each command and, if necessary,
21 # update the values of LINES and COLUMNS.
22 shopt -s checkwinsize
23
24 # make less more friendly for non-text input files, see lesspipe(1)
25 #[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
26
27 # set variable identifying the chroot you work in (used in the prompt below)
28 if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
29 debian_chroot=$(cat /etc/debian_chroot)
30 fi
31
32 # set a fancy prompt (non-color, unless we know we "want" color)
33 case "$TERM" in
34 xterm-color) color_prompt=yes;;
35 esac
36
37 # uncomment for a colored prompt, if the terminal has the capability; turned
38 # off by default to not distract the user: the focus in a terminal window
39 # should be on the output of commands, not on the prompt
40 force_color_prompt=yes
41
42 if [ -n "$force_color_prompt" ]; then
43 if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
44 # We have color support; assume it's compliant with Ecma-48
45 # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
46 # a case would tend to support setf rather than setaf.)
47 color_prompt=yes
48 else
49 color_prompt=
50 fi
51 fi
52
53 if [ "$color_prompt" = yes ]; then
54 PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
55 else
56 PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
57 fi
58 unset color_prompt force_color_prompt
59
60 # If this is an xterm set the title to user@host:dir
61 case "$TERM" in
62 xterm*|rxvt*)
63 PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
64 ;;
65 *)
66 ;;
67 esac
68
69 # enable color support of ls and also add handy aliases
70 if [ -x /usr/bin/dircolors ]; then
71 test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
72 alias ls='ls --color=auto'
73 #alias dir='dir --color=auto'
74 #alias vdir='vdir --color=auto'
75
76 #alias grep='grep --color=auto'
77 #alias fgrep='fgrep --color=auto'
78 #alias egrep='egrep --color=auto'
79 fi
80
81 # some more ls aliases
82 #alias ll='ls -l'
83 #alias la='ls -A'
84 #alias l='ls -CF'
85
86 # Alias definitions.
87 # You may want to put all your additions into a separate file like
88 # ~/.bash_aliases, instead of adding them here directly.
89 # See /usr/share/doc/bash-doc/examples in the bash-doc package.
90
91 if [ -n "$STY" ]; then
92 PROMPT_COMMAND='screen -X hstatus "screen ^E (^Et) | $USER@^EH:${PWD/#$HOME/~}"'
93 else
94 PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/~}\007"'
95 fi
96
97 if [ -f /home/jrunyon/.bash_aliases ]; then
98 . /home/jrunyon/.bash_aliases
99 fi
100
101 # enable programmable completion features (you don't need to enable
102 # this, if it's already enabled in /etc/bash.bashrc and /etc/profile
103 # sources /etc/bash.bashrc).
104 if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
105 . /etc/bash_completion
106 fi
107
108 export PATH="$HOME/bin:$HOME/.cargo/bin:$PATH"