]> jfr.im git - z_archive/shellstuff.git/blame - bashrc
testing
[z_archive/shellstuff.git] / bashrc
CommitLineData
6a0b3c8c 1TERM=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
0c8ad8a1 7[ -z "$PS1" ] && return
6a0b3c8c 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'.
11HISTCONTROL=$HISTCONTROL${HISTCONTROL+:}ignoredups
12# ... or force ignoredups and ignorespace
13HISTCONTROL=ignoreboth
14
15# append to the history file, don't overwrite it
16shopt -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.
0c8ad8a1
JR
22shopt -s checkwinsize
23
6a0b3c8c 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)
28if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
29 debian_chroot=$(cat /etc/debian_chroot)
30fi
31
32# set a fancy prompt (non-color, unless we know we "want" color)
33case "$TERM" in
34 xterm-color) color_prompt=yes;;
35esac
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
40force_color_prompt=yes
41
42if [ -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
51fi
52
53if [ "$color_prompt" = yes ]; then
54 PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
55else
56 PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
57fi
58unset color_prompt force_color_prompt
59
60# If this is an xterm set the title to user@host:dir
61case "$TERM" in
62xterm*|rxvt*)
63 PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
64 ;;
65*)
66 ;;
67esac
68
69# enable color support of ls and also add handy aliases
70if [ -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'
0c8ad8a1 75
6a0b3c8c 76 #alias grep='grep --color=auto'
77 #alias fgrep='fgrep --color=auto'
78 #alias egrep='egrep --color=auto'
79fi
0c8ad8a1 80
6a0b3c8c 81# some more ls aliases
82#alias ll='ls -l'
83#alias la='ls -A'
84#alias l='ls -CF'
0c8ad8a1 85
6a0b3c8c 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.
0c8ad8a1 90
6a0b3c8c 91if [ -n "$STY" ]; then
92 PROMPT_COMMAND='screen -X hstatus "screen ^E (^Et) | $USER@^EH:${PWD/#$HOME/~}"'
93else
94 PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/~}\007"'
95fi
0c8ad8a1 96
6a0b3c8c 97if [ -f /home/jrunyon/.bash_aliases ]; then
98 . /home/jrunyon/.bash_aliases
0c8ad8a1 99fi
6a0b3c8c 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).
104if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
105 . /etc/bash_completion
106fi
107
108export PATH="$HOME/bin:$HOME/.cargo/bin:$PATH"