21 lines
417 B
Bash
21 lines
417 B
Bash
#
|
|
# ~/.bashrc
|
|
#
|
|
|
|
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
|
|
if
|
|
[ -f ~/.config/shell/aliases ]; then
|
|
. ~/.config/shell/aliases
|
|
fi
|
|
|
|
# Set vimrc's location and source it on vim startup
|
|
# export VIMINIT='let $MYVIMRC="$XDG_CONFIG_HOME/vim/vimrc" | source $MYVIMRC'
|
|
|
|
# alias ls='ls --color=auto'
|
|
#PS1='[\u@\h \W]\$ '
|
|
PS1='== \W ⚙️ >>'
|
|
eval "$(starship init bash)"
|
|
neofetch
|