aboutsummaryrefslogtreecommitdiff
path: root/bash/profile
diff options
context:
space:
mode:
Diffstat (limited to 'bash/profile')
-rw-r--r--bash/profile33
1 files changed, 0 insertions, 33 deletions
diff --git a/bash/profile b/bash/profile
deleted file mode 100644
index 6fc34a51..00000000
--- a/bash/profile
+++ /dev/null
@@ -1,33 +0,0 @@
-# Locale
-export LANG='en_NZ.UTF-8'
-export LANGUAGE='en_NZ:en'
-unset LC_ALL
-
-# Editor
-export EDITOR='vi'
-export VISUAL="$EDITOR"
-
-# Pager
-export PAGER='less'
-
-# Mail
-export MAIL="$HOME/Mail"
-
-# Browser
-if [ -n "$DISPLAY" ]; then
- export BROWSER='firefox'
-else
- export BROWSER='lynx'
-fi
-
-# Path
-for bindir in \
- "$HOME/.local/bin" \
- '/usr/local/apache/bin' \
- '/usr/local/mysql/bin' \
- '/usr/local/nagios/bin' \
- '/usr/local/pgsql/bin'
-do
- [ -d "$bindir" ] && export PATH="$bindir:$PATH"
-done
-