summaryrefslogtreecommitdiffstats
path: root/dotfiles/bashrc
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles/bashrc')
-rw-r--r--dotfiles/bashrc28
1 files changed, 28 insertions, 0 deletions
diff --git a/dotfiles/bashrc b/dotfiles/bashrc
new file mode 100644
index 0000000..7abf9bd
--- /dev/null
+++ b/dotfiles/bashrc
@@ -0,0 +1,28 @@
+# .bashrc
+
+# Source global definitions
+if [ -f /etc/bashrc ]; then
+ . /etc/bashrc
+fi
+
+# User specific aliases and functions
+
+if [ -f /etc/bash_completion ]; then
+ . /etc/bash_completion
+fi
+
+shopt -s histappend
+
+EDITOR="emacsclient"
+export EDITOR
+
+_format_inroot_dir ()
+{
+ if test -n "$INROOT_DIR"; then
+ echo " [root=$INROOT_DIR]"
+ fi
+}
+
+PS1='\W$(_format_inroot_dir)$(__git_ps1 " [git %s]") \$ '
+export PS1
+