diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-12-19 22:43:45 +0100 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-12-19 22:43:45 +0100 |
| commit | 74f77d238d71500a8fb8c83f9a6ef5758c29f095 (patch) | |
| tree | 2eb92ec0b19e9581cca49e5717385ffb211a3921 /bash | |
| parent | f0cc35ce683e352646a6461060b0913cde515532 (diff) | |
| download | dotfiles-74f77d238d71500a8fb8c83f9a6ef5758c29f095.tar.gz dotfiles-74f77d238d71500a8fb8c83f9a6ef5758c29f095.zip | |
Remove starship, use custom bash prompt
Diffstat (limited to 'bash')
| -rw-r--r-- | bash/.bashrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bash/.bashrc b/bash/.bashrc index ca1755a..c43044c 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -3,6 +3,7 @@ export PATH=$HOME/.dotfiles/bin/:/usr/local/bin/:$PATH export GOPATH=$HOME/.go export EDITOR='nvim' export MANPAGER='nvim +Man!' +export PS1="\n\e[1;32m[\u@\h:\w]\$ \e[0m" # Aliases alias ls='ls --color=auto' @@ -25,7 +26,6 @@ bind '"\e[A":history-search-backward' bind '"\e[B":history-search-forward' # Start programs -eval "$(starship init bash)" eval "$(zoxide init --cmd='cd' bash)" if [[ -f ~/.bash-preexec.sh ]]; then |