-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile
More file actions
34 lines (26 loc) · 890 Bytes
/
profile
File metadata and controls
34 lines (26 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[[ -f ~/.bashrc ]] && . ~/.bashrc
# include personal bin directory
export PATH="$PATH:$HOME/.local/bin"
####################
# XDG Base Directory
# use env variables, fallback to default locations if unset
DATA_HOME=${XDG_DATA_HOME:-$HOME/.local/share}
CONFIG_HOME=${XDG_CONFIG_HOME:-$HOME/.config}
CACHE_HOME=${XDG_CACHE_HOME:-$HOME/.cache}
export HISTFILE="$DATA_HOME/bash/history"
export LESSHISTFILE="$DATA_HOME/less/history"
export GNUPGHOME="$CONFIG_HOME/gnupg/"
# cache location of proprietary nvidia driver
export __GL_SHADER_DISK_CACHE_PATH="$CACHE_HOME/nv"
export CUDA_CACHE_PATH="$CACHE_HOME/nv"
######################
# Personal preferences
export EDITOR=nvim
##################
# Debian packaging
export DEBEMAIL="m.hovorka@live.de"
export DEBFULLNAME="Markus Hovorka"
############
# arduino-mk
export ARDUINO_DIR=/usr/share/arduino
export ARDMK_DIR=/usr/share/arduino