Add global environment variables
This commit is contained in:
parent
3aed80e072
commit
8e3dae10fe
1 changed files with 28 additions and 0 deletions
|
@ -13,5 +13,33 @@ export PATH="$PATH:$XDG_BIN_HOME"
|
||||||
## BEGIN GLOBAL ENV VARS ##
|
## BEGIN GLOBAL ENV VARS ##
|
||||||
###############################
|
###############################
|
||||||
|
|
||||||
|
###############################
|
||||||
|
## BEGIN GLOBAL ENV VARS ##
|
||||||
|
###############################
|
||||||
|
|
||||||
# if we forgot to set it treat bash as default
|
# if we forgot to set it treat bash as default
|
||||||
export SHELL=${SHELL:-/bin/bash}
|
export SHELL=${SHELL:-/bin/bash}
|
||||||
|
|
||||||
|
# will be picked up by many programs as notes directory
|
||||||
|
export WIKIROOT="${WIKIROOT:-$HOME/documents/notes}"
|
||||||
|
# will be picked up by many programs as library root directory
|
||||||
|
export LIBRARYROOT="${LIBRARYROOT:-$HOME/documents/library}"
|
||||||
|
# the default bibtex file to work on
|
||||||
|
# will change over time as primary projects change
|
||||||
|
# basically functions as 'default library' variable
|
||||||
|
export BIBFILE="${BIBFILE:-$LIBRARYROOT/academia/academia.bib}"
|
||||||
|
|
||||||
|
# these are my personal 'important' application settings
|
||||||
|
export EDITOR=nvim
|
||||||
|
export BROWSER=qutebrowser
|
||||||
|
|
||||||
|
export TERMINAL="alacritty"
|
||||||
|
export PAGER="less"
|
||||||
|
|
||||||
|
export FILEREADER="zathura"
|
||||||
|
export FILEMANAGER="vifm"
|
||||||
|
|
||||||
|
## gopath
|
||||||
|
|
||||||
|
export GOPATH="$HOME/projects/gopath/"
|
||||||
|
export PATH="$PATH:$GOPATH/bin"
|
||||||
|
|
Loading…
Reference in a new issue