dotfiles/bash/.bash_profile

22 lines
513 B
Bash
Raw Normal View History

2022-11-16 19:01:14 -07:00
#!/bin/bash
2021-10-14 23:41:34 -06:00
# .bash_profile
2022-10-26 12:05:56 -06:00
PATH=$PATH:$HOME/.local/bin:$HOME/bin:$HOME/.cargo/bin
2021-10-14 23:41:34 -06:00
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
2022-11-21 09:37:00 -07:00
export EDITOR=/usr/bin/vim
export TERMINAL=/usr/bin/alacritty
export BROWSER=/usr/bin/librewolf-bin
2021-10-14 23:41:34 -06:00
export PATH
2022-10-26 12:05:56 -06:00
export PATH=$PATH:/home/bryson/.spicetify
2022-11-21 09:37:00 -07:00
complete -cf doas
source /usr/share/autojump/autojump.bash
source /usr/share/bash-completion/completions/fzf
source /usr/share/fzf/key-bindings.bash