20 lines
532 B
Bash
20 lines
532 B
Bash
#
|
|
# ~/.bashrc
|
|
#
|
|
|
|
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
|
|
alias ls='ls --color=auto'
|
|
alias grep='grep --color=auto'
|
|
alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
|
|
PS1='[\u@\h \W]\$ '
|
|
|
|
eval "$(starship init bash)"
|
|
|
|
alias reboot-to-windows='sudo grub-reboot "Windows Boot Manager (on /dev/nvme1n1p1)" && sudo reboot'
|
|
export PATH=~/.npm-global/bin:~/.local/bin:$PATH
|
|
export SSH_AUTH_SOCK=/home/pmcc/.bitwarden-ssh-agent.sock
|
|
|
|
alias claude="/home/pmcc/.claude/local/claude"
|