dotfiles/bash/.bash_profile

21 lines
488 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
2023-01-25 10:47:00 -07:00
PATH=$PATH:$HOME/.local/bin:$HOME/bin:$HOME/.cargo/bin:$HOME/.dotnet/tools
2022-10-26 12:05:56 -06:00
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
2023-09-03 00:13:21 -06:00
export XZ_OPT='-9 -T0 -M 32000000000'
2021-10-14 23:41:34 -06:00
export PATH
2022-11-21 09:37:00 -07:00
complete -cf doas
source /usr/share/bash-completion/completions/fzf
source /usr/share/fzf/key-bindings.bash