|
@@ -0,0 +1,16 @@
|
|
|
|
|
+#!/bin/sh
|
|
|
|
|
+
|
|
|
|
|
+set -E
|
|
|
|
|
+
|
|
|
|
|
+export TERM="xterm-256color"
|
|
|
|
|
+
|
|
|
|
|
+export VISUAL="vim"
|
|
|
|
|
+export SUDO_EDITOR="vim"
|
|
|
|
|
+
|
|
|
|
|
+alias ls="ls -lahg --color=always --group-directories-first"
|
|
|
|
|
+alias grep='grep --color=auto'
|
|
|
|
|
+alias dotfiles="git --git-dir=$HOME/.dotfiles --work-tree=$HOME"
|
|
|
|
|
+
|
|
|
|
|
+PS1="\h \$? \$ "
|
|
|
|
|
+
|
|
|
|
|
+umask 0077
|