Add default apps, folders environment variables

This commit is contained in:
Marty Oehme 2019-12-03 23:13:43 +01:00
parent 18ba1fe6f0
commit 920af8e9ba
4 changed files with 22 additions and 9 deletions

View file

@ -0,0 +1,16 @@
#!/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"

View file

@ -5,8 +5,4 @@ export XDG_CONFIG_HOME="$HOME/.config"
export XDG_CACHE_HOME="$HOME/.cache"
# these are my personal 'important' directories
export XDG_PROJECTS_DIR="$HOME/projects"
export EDITOR=nvim
export BROWSER=qutebrowser

View file

@ -0,0 +1,6 @@
#!/bin/sh
# if wal exists
# Import colorscheme from 'wal' asynchronously
# & # Run the process in the background.
# ( ) # Hide shell job control messages.
type wal >/dev/null 2>&1 && (cat ~/.cache/wal/sequences &)

View file

@ -1,5 +0,0 @@
#!/bin/sh
# set wiki root to nextcloud notes folder,
# will be picked up by vim wiki plugin as root
export WIKIROOT=${WIKIROOT:-"$HOME/Nextcloud/Notes/"}