-
Notifications
You must be signed in to change notification settings - Fork 1
/
.exports
57 lines (41 loc) · 1.51 KB
/
.exports
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# -*- mode: sh -*-
# allow 20000 entries in .bash_history
export HISTSIZE='20000';
export HISTFILESIZE="${HISTSIZE}";
# don't put duplicate lines in .bash_history
HISTCONTROL=ignoredups:ignorespace
# make emacs the default editor
export EDITOR='emacsclient -t';
export VISUAL='emacsclient -t';
export ALTERNATE_EDITOR=vim;
# prefer US English and use UTF-8
export LANG='en_US.UTF-8';
export LC_ALL='en_US.UTF-8';
# don’t clear the screen after quitting a manual page
export MANPAGER='less -X';
# colored man pages
export LESS_TERMCAP_mb=$'\e[1;32m'
export LESS_TERMCAP_md=$'\e[1;32m'
export LESS_TERMCAP_me=$'\e[0m'
export LESS_TERMCAP_se=$'\e[0m'
export LESS_TERMCAP_so=$'\e[01;33m'
export LESS_TERMCAP_ue=$'\e[0m'
export LESS_TERMCAP_us=$'\e[1;4;31m'
# OnlyKey for GPG https://docs.crp.to/onlykey-agent.html
export GNUPGHOME="$HOME/.gnupg/onlykey"
# make Python use UTF-8 encoding for output to stdin, stdout, and stderr
export PYTHONIOENCODING='UTF-8';
# use ipdb for Python debugging by default
export PYTHONBREAKPOINT=ipdb.set_trace
# https://wiki.debian.org/KVM
export LIBVIRT_DEFAULT_URI=qemu:///system
# https://www.qubes-os.org/doc/split-gpg/
export QUBES_GPG_DOMAIN=vault-gpg
# https://golang.org/doc/code.html
export GOPATH=$HOME/Code/go
# https://deno.land/#installation
export DENO_INSTALL="$HOME/.deno"
export PATH=$HOME/.local/bin:$HOME/.cargo/bin:$GOPATH/bin:$DENO_INSTALL/bin:$PATH
# https://virtualenvwrapper.readthedocs.io/en/latest/
WORKON_HOME=$HOME/Code/virtualenvs
export VAGRANT_DEFAULT_PROVIDER=libvirt