dotfiles/.bashrc

17 lines
312 B
Bash
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# .bashrc
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# Aliases
alias ls="lsd"
alias cat="bat"
PS1='[\u@\h \W]\$ '
eval "$(starship init bash)"
source ~/.local/share/blesh/ble.sh
# bun
export BUN_INSTALL="$HOME/.bun"
export PATH=$BUN_INSTALL/bin:$PATH:~/.local/bin:~/go/bin