Marty Oehme
bd96394d67
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.
16 lines
426 B
Bash
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"
|