dotfiles/bash/.bash_profile
2023-05-31 22:46:32 -06:00

20 lines
473 B
Bash

#!/bin/bash
# .bash_profile
PATH=$PATH:$HOME/.local/bin:$HOME/bin:$HOME/.cargo/bin:$HOME/.dotnet/tools
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
export EDITOR=/usr/bin/vim
export TERMINAL=/usr/bin/alacritty
export BROWSER=/usr/bin/librewolf-bin
export XZ_OPT='-9 -T0'
export PATH
complete -cf doas
source /usr/share/bash-completion/completions/fzf
source /usr/share/fzf/key-bindings.bash