diff options
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" |
