dotfiles/.config/shell/login.d/env-vars.sh
Marty Oehme bd96394d67 Fix pdf compilation targets and Library envvar
Pdfs will be compiled, replacing special characters with underscores;
this fix also looks for underscored files when trying to open the
compiled version of a file.

The Library environment variable (for my default bibtex library
directory) overwrote yay's library directory; it has been renamed to
LIBRARYROOT to both mirror WIKIROOT as my note directory and keep the
LIBRARY variable empty so yay will continue working.
2019-12-28 10:07:05 +01:00

16 lines
426 B
Bash

#!/usr/bin/env sh
# important directories
# will be picked up by vim wiki plugin as root directory
export WIKIROOT="$HOME/documents/notes/"
export LIBRARYROOT="$HOME/documents/library"
export 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"