blob: 512571007f23d2998fd3b9ab646db2731bc1bc12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Shell profile
# Export path.
# Scripts and local binaries.
if [ -d "$HOME/bin" ]; then
export PATH="$PATH:$HOME/bin"
fi
if [ -d "$HOME/.local/bin" ]; then
export PATH="$PATH:$HOME/.local/bin"
fi
# Set environment variables.
# Set default programs.
export TERMINAL="alacritty"
export PAGER="less"
export EDITOR="nvim"
export BROWSER="brave"
|