mirror of
https://github.com/dnlbauer/dotfiles.git
synced 2026-09-10 21:45:30 +00:00
20 lines
477 B
Bash
20 lines
477 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="$HOME/.cargo/bin:$PATH"
|
|
export PATH="$HOME/conda/bin:${PATH}" # binaries
|
|
export PATH="$HOME/bin:${PATH}" # binaries
|
|
export PATH="$HOME/scripts:${PATH}" # scripts
|
|
export PATH="$HOME/.local/bin:${PATH}" # python executeables
|