19 lines
450 B
Bash
19 lines
450 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 PATH
|
|
complete -cf doas
|
|
source /usr/share/bash-completion/completions/fzf
|
|
source /usr/share/fzf/key-bindings.bash
|