blob: 24513380bde5b6dbde2c06caedff8fed6a425931 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# Source dotfiles
source ~/.bashrc_ps1
source ~/.bashrc_alias
# colored GCC warnings and errors
export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
# PATH
export PATH=~/bin:$PATH
# Title bar
#echo -ne "\033]0;$(lsb_release -ds) $(hostname) $(uname -r)\007"
|