mirror of
https://github.com/dnlbauer/dotfiles.git
synced 2026-09-10 21:45:30 +00:00
19 lines
430 B
Bash
19 lines
430 B
Bash
#!/bin/bash
|
|
|
|
# system preferences
|
|
export LANG=en_US.UTF-8
|
|
export SSH_KEY_PATH="~/.ssh/rsa_id"
|
|
|
|
# Prefered programs
|
|
export EDITOR='vim'
|
|
export TERMINAL="terminator"
|
|
export BROWSER="firefox"
|
|
export PAGER='most'
|
|
export BAT_PAGER='less'
|
|
|
|
# Path
|
|
export PATH="${PATH}:$HOME/.cargo/bin"
|
|
export PATH="${PATH}:$HOME/bin" # binaries
|
|
export PATH="${PATH}:$HOME/scripts" # scripts
|
|
export PATH="${PATH}:$HOME/.local/bin" # python executeables
|