dotfiles/zsh/func/init_env

13 lines
322 B
Bash

#!/usr/bin/env zsh
# Eryn Wells <eryn@erynwells.me>
export PAGER="less"
export MANPAGER=$PAGER
export EDITOR="vim"
export VISUAL=$EDITOR
export LESSHISTFILE="-"
export GREP_OPTIONS="--color=auto"
export GREP_COLOR="1;32"
# Make sure gpg2 knows what to do with the curses-based smartcard PIN prompt.
export GPG_TTY=`tty`