-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.exports
35 lines (28 loc) · 852 Bytes
/
.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
#!/bin/bash
##################################################
# .exports
# ------------
# Loosly based on the amazing work of Jess Frazelle
#
# :author: Levi Olson
# :date: 1 Feb 2018
# :version: 0.0.1
##################################################
export EDITOR=emacsclient
export TERMINAL=kitty
# Larger bash history (allow 32³ entries; default is 500)
export HISTSIZE=50000000
export HISTFILESIZE=$HISTSIZE
export HISTCONTROL=ignoreboth:erasedups
# 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"
export JOURNAL_DIR=$HOME/org/journal
export PROJECTS_DIR=$HOME/Projects
# DPI for GTK apps
export GDK_SCALE=1
export GDK_DPI_SCALE=1
export QT_DEVICE_PIXEL_RATIO=1
export GI_TYPELIB_PATH="/usr/local/lib/girepository-1.0"