This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
.dotfiles/.bashrc
2023-12-30 05:59:57 -03:00

14 lines
216 B
Bash

#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
alias grep='grep --color=auto'
PS1='[\u@\h \W]\$ '
export GPG_TTY=$(tty)
. "$HOME/.cargo/env"