Marty Oehme
bc4b416f53
Fixed tests using new file structure for personal environment variables. Added test cases for library environment variable and bibtex (default) reference file variable.
16 lines
468 B
Bash
16 lines
468 B
Bash
#!/usr/bin/env sh
|
|
|
|
# important directories
|
|
|
|
# will be picked up by vim wiki plugin as root directory
|
|
export WIKIROOT="${WIKIROOT:-$HOME/documents/notes/}"
|
|
export LIBRARYROOT="${LIBRARYROOT:-$HOME/documents/library/}"
|
|
export BIBFILE="${BIBFILE:-$LIBRARYROOT/academia/academia.bib}"
|
|
|
|
# these are my personal 'important' environment settings
|
|
export EDITOR=nvim
|
|
export BROWSER=qutebrowser
|
|
|
|
export TERMINAL="alacritty"
|
|
export FILEREADER="zathura"
|
|
export FILEMANAGER="vifm"
|