Skip to content
Snippets Groups Projects
Commit 97133f65 authored by Nigel Kukard's avatar Nigel Kukard
Browse files

We need to export variables so other programs can see them

parent ba493cd7
No related branches found
No related tags found
No related merge requests found
# Override first bin dir # Override first bin dir
PATH=~/bin:$PATH export PATH=~/bin:$PATH
# Use a bunch of colors # Use a bunch of colors
if [ "$TERM" = "screen" ] if [ "$TERM" = "screen" ]
then then
TERM="screen-256color-s" export TERM="screen-256color-s"
else else
TERM="xterm-256color" export TERM="xterm-256color"
fi fi
......
...@@ -4,7 +4,7 @@ then ...@@ -4,7 +4,7 @@ then
if [ -x /usr/bin/ksshaskpass ] if [ -x /usr/bin/ksshaskpass ]
then then
# Use KDE askpass # Use KDE askpass
SSH_ASKPASS=/usr/bin/ksshaskpass export SSH_ASKPASS=/usr/bin/ksshaskpass
echo "zsh: Using ksshaskpass" echo "zsh: Using ksshaskpass"
else else
echo "NOTICE: You're using the plasma desktop, but you don't have ksshaskpass installed?" echo "NOTICE: You're using the plasma desktop, but you don't have ksshaskpass installed?"
......
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
test "x$HOSTNAME" = "x" && HOSTNAME=$(hostname) test "x$HOSTNAME" = "x" && HOSTNAME=$(hostname)
VISUAL=/usr/bin/vim export VISUAL=/usr/bin/vim
EDITOR=/usr/bin/vim export EDITOR=/usr/bin/vim
GIT_EDITOR=/usr/bin/vim export GIT_EDITOR=/usr/bin/vim
SHELL=/bin/zsh export SHELL=/bin/zsh
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment