mirror of
https://github.com/dnlbauer/dotfiles.git
synced 2026-09-10 21:45:30 +00:00
migrate dotfiles to chezmoi
This commit is contained in:
20
dot_environment
Normal file
20
dot_environment
Normal file
@@ -0,0 +1,20 @@
|
||||
#!/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"
|
||||
export PATH="${PATH}:$HOME/bin"
|
||||
export PATH="${PATH}:$HOME/.cargo/bin"
|
||||
Reference in New Issue
Block a user