forked from livibetter/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbash_profile
35 lines (30 loc) · 826 Bytes
/
bash_profile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# .bash_profile
# Get the aliases and functions
[[ -f $HOME/.bashrc ]] && . $HOME/.bashrc
# User specific environment and startup programs
PATH=$HOME/bin:$PATH:/sbin:/usr/sbin:/usr/games/bin
MANPATH=$MANPATH:$HOME/share/man:$HOME/.local/man
PYTHONPATH="$HOME/lib/python:$PYTHONPATH"
XDG_CONFIG_HOME=~/.config
XDG_DATA_HOME=~/.local/share
BROWSER=firefox
# Invoking Vim directly, not server mode via vi* alias defined in bashrc
# Only use server mode by my explict command, programs invoke editor may have
# problem with server mode.
EDITOR=/usr/bin/vim
#OOO_FORCE_DESKTOP="gnome"
export PATH
export MANPATH
export PYTHONPATH
export XDG_CONFIG_HOME
export XDG_DATA_HOME
export BROWSER
export EDITOR
#export OOO_FORCE_DESKTOP
# Go Stuff
#GOROOT=$HOME/go
#GOOS=linux
#GOARCH=amd64
#export GOROOT
#export GOOS
#export GOARCH