diff options
| author | Warrick Lo <warrick.s.z.lo@gmail.com> | 2021-11-27 04:18:00 -0800 |
|---|---|---|
| committer | Warrick Lo <warrick.s.z.lo@gmail.com> | 2021-11-27 04:18:00 -0800 |
| commit | d4fa77e06115731c056b285ea980f4b30db349a8 (patch) | |
| tree | 8f05d76e19ccc9eb312b8da531c3413bd9ad7ba3 /.profile | |
Add shell configs
Diffstat (limited to '.profile')
| -rw-r--r-- | .profile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.profile b/.profile new file mode 100644 index 0000000..5125710 --- /dev/null +++ b/.profile @@ -0,0 +1,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" |
