Last active
April 15, 2025 14:52
-
-
Save ArthurDelannoyazerty/a7ed4eee2781aa05e1f8911e487c8e80 to your computer and use it in GitHub Desktop.
My .bashrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias lps="lps -dF" | |
alias ls="ls --color" | |
alias ll="ls -alFhv --group-directories-first" | |
alias df="df -h" | |
umask 0002 | |
# UV ------------------------------------------------ | |
. "$HOME/.cargo/env" | |
# PROJECT ------------------------------------------- | |
PROJECT_PATH=$(pwd) | |
# export env variable | |
set -a && source .env && set +a | |
# Source project venv | |
source .venv/bin/activate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment