You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.0 KiB
45 lines
1.0 KiB
7 years ago
|
export LANG="en_GB.UTF-8"
|
||
|
export TERMINAL=/usr/local/bin/st
|
||
|
export TERM=xterm-256color
|
||
|
export EDITOR='vim'
|
||
6 years ago
|
export READER='zathura'
|
||
5 years ago
|
export CDPATH=.:~:~/Projects:~/.dotfiles
|
||
5 years ago
|
|
||
|
#Adds a list of all the sub directories in my .bin folder to a variable called mypath
|
||
|
mypath="$HOME/.bin"
|
||
|
# Adds sub folders in by .bin directory to the PATH
|
||
|
for d in "$HOME"/.bin/*/; do
|
||
|
mypath+=":$d"
|
||
|
done
|
||
|
|
||
|
export PATH=~/Projects/current/bin:$mypath:$PATH:.
|
||
7 years ago
|
|
||
|
#Ruby things
|
||
|
GEM_HOME=$(ls -t -U | ruby -e 'puts Gem.user_dir')
|
||
|
GEM_PATH=$GEM_HOME
|
||
|
export PATH=$PATH:$GEM_HOME/bin
|
||
|
export GEM_HOME=$(ruby -e 'print Gem.user_dir')
|
||
|
|
||
6 years ago
|
|
||
5 years ago
|
export LESS_TERMCAP_mb=$'\e[1;36m'
|
||
|
export LESS_TERMCAP_md=$'\e[1;36m'
|
||
|
export LESS_TERMCAP_me=$'\e[0m'
|
||
|
export LESS_TERMCAP_se=$'\e[0m'
|
||
|
export LESS_TERMCAP_so=$'\e[1;40;92m'
|
||
|
export LESS_TERMCAP_ue=$'\e[0m'
|
||
|
export LESS_TERMCAP_us=$'\e[1;32m'
|
||
|
|
||
|
export DOTFILES="$HOME/.dotfiles"
|
||
|
|
||
|
if [ -n "$GTK_MODULES" ]
|
||
|
then
|
||
|
export GTK_MODULES="$GTK_MODULES:unity-gtk-module"
|
||
|
else
|
||
|
export GTK_MODULES="unity-gtk-module"
|
||
|
fi
|
||
|
|
||
|
if [ -z "$UBUNTU_MENUPROXY" ]
|
||
|
then
|
||
|
export UBUNTU_MENUPROXY=1
|
||
|
fi
|