forked from ginmania/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bashrc
33 lines (22 loc) · 897 Bytes
/
.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
neofetch
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# ---Powerline Prompt---
#function _update_ps1() {
# PS1=$(powerline-shell $?)
#}
#if [[ $TERM != linux && ! $PROMPT_COMMAND =~ _update_ps1 ]]; then
# PROMPT_COMMAND="_update_ps1; $PROMPT_COMMAND"
#fi
# ----------------------
# PS1 Prompt
#export PS1="\[\e[33m\][\[\e[m\]\[\e[31m\]\u\[\e[m\]@\[\e[36m\]\h\[\e[m\]:\[\e[35m\]\w\[\e[m\]\[\e[33m\]]\[\e[m\] (\$(git branch 2>/dev/null | grep '^*' | colrm 1 2)) \$ "
#export PROMPT_COMMAND="notify-send 'Important Notice' 'ARCH LINUX IS THE BEST DISTRO'"
set -o vi
# Source configs
for f in ~/.config/shellconfig/*; do source "$f"; done
source /home/brodie/.config/broot/launcher/bash/br
# Starship Prompt
eval "$(starship init bash)"
# Generated for envman. Do not edit.
[ -s "$HOME/.config/envman/load.sh" ] && source "$HOME/.config/envman/load.sh"