17 lines
418 B
Bash
17 lines
418 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 LIBRARY="$HOME/documents/library"
|
||
|
export BIBFILE="$LIBRARY/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"
|