mirror of
https://github.com/dnlbauer/dotfiles.git
synced 2026-09-11 22:15:28 +00:00
22 lines
382 B
Bash
22 lines
382 B
Bash
#!/bin/bash
|
|
|
|
# system preferences
|
|
export TERM="xterm-256color"
|
|
export LANG=en_US.UTF-8
|
|
export SSH_KEY_PATH="~/.ssh/rsa_id"
|
|
|
|
# Prefered programs
|
|
export EDITOR='vim'
|
|
if type most > /dev/null; then
|
|
export PAGER='most'
|
|
else
|
|
export PAGER='less'
|
|
fi
|
|
|
|
|
|
# Change Path
|
|
export PATH="${PATH}:$HOME/.local/bin"
|
|
if [ -d $HOME/.cargo ]; then
|
|
export PATH="${PATH}:$HOME/.cargo/bin"
|
|
fi
|