-
Notifications
You must be signed in to change notification settings - Fork 0
/
dot_bashrc
35 lines (30 loc) · 1.08 KB
/
dot_bashrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# EXPORT SETTINGS
export BASH_IT="$HOME/.bash_it"
export BASH_IT_THEME='bakke'
export BASH_IT_CUSTOM="$HOME/.custom-bash"
export SCM_CHECK=true
export SCM_GIT="\git"
export TERM=screen-256color
export HISTTIMEFORMAT="%h %d %H:%M:%S "
export HISTIGNORE="ls:rm:history:cd:hgrep"
export HISTCONTROL=ignoredups:erasedups
shopt -s histappend
# SOURCE NECESSARY SCRIPTS
source "$BASH_IT"/bash_it.sh
# CHECK IF AUTOJUMP IS INSTALLED
if [[ -s $HOME/.autojump/etc/profile.d/autojump.sh ]]; then
source $HOME/.autojump/etc/profile.d/autojump.sh
fi
# AUTOJUMP WAS INSTALLED VIA PACKAGE MANAGER
if [[ -s /usr/share/autojump/autojump.bash ]]; then
source /usr/share/autojump/autojump.bash
fi
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
[ -f $HOME/.cargo/env ] && source "$HOME/.cargo/env"
source /home/joey/.config/broot/launcher/bash/br
# Generated for envman. Do not edit.
[ -s "$HOME/.config/envman/load.sh" ] && source "$HOME/.config/envman/load.sh"
. /home/joey/.local/share/cloudflare-warp-certs/config.sh
export VOLTA_HOME="$HOME/.volta"
export PATH="$VOLTA_HOME/bin:$PATH"
. "$HOME/.cargo/env"