The very personal dotfiles of Levi Olson.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

35 lines
852 B

#!/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"