16 lines
466 B
Bash
16 lines
466 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"
|