Created
August 4, 2021 06:15
-
-
Save SymphonySimper/ae92284b9d29326b3130e7b095d9ec04 to your computer and use it in GitHub Desktop.
bash
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#[[ -f ~/.bashrc ]] && . ~/.bashrc | |
~/.config/shell/.profile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# ~/.bashrc | |
# | |
# If not running interactively, don't do anything | |
[[ $- != *i* ]] && return | |
# PS1='[\u@\h \W]\$ ' | |
PS1="\W > " | |
#shopt -s autocd | |
#Alias and Functions | |
alias config='/usr/bin/git --git-dir=/home/s2b/.cfg/ --work-tree=/home/s2b' | |
######## | |
#Source# | |
######## | |
sloc="$HOME/.config/shell" | |
for f in $sloc/*; do source "$f"; done | |
#Starship | |
#eval "$(starship init bash)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment