This commit is contained in:
Julien Palard 2022-09-02 10:39:22 +02:00
parent c115a7da55
commit 8075e170fd
Signed by: mdk
GPG Key ID: 0EFC1AC1006886F8
2 changed files with 27 additions and 2 deletions

21
.bashrc
View File

@ -105,8 +105,10 @@ PY_BLUE_FG='\e[38;2;53;112;160m'
PY_BLUE_BG='\e[48;2;53;112;160m'
PY_YELLOW_FG='\e[38;2;255;222;87m'
PY_YELLOW_BG='\e[48;2;255;222;87m'
PY_PS1='$(python_ps1 "${PY_BLUE_FG}🭋${PY_BLUE_BG}${PY_YELLOW_FG}  %s \e[0m${PY_BLUE_FG}🭛\e[0m")'
GIT_PS1='$(__git_ps1 "${GIT_RED_FG}🭋${GIT_RED_BG}\e[97m  %s \e[0m${GIT_RED_FG}🭛\e[0m")'
# 🬫🬛
# 🭮🭬
PY_PS1='$(python_ps1 "${PY_BLUE_FG}🭮${PY_BLUE_BG}${PY_YELLOW_FG}  %s \e[0m${PY_BLUE_FG}🭬\e[0m")'
GIT_PS1='$(__git_ps1 "${GIT_RED_FG}🭮${GIT_RED_BG}\e[97m  %s \e[0m${GIT_RED_FG}🭬\e[0m")'
PS1="${_TITLE}${_PREV_FAIL}${USERNAME_COLOR}\u\e[0m@${HOSTNAME_COLOR}\H\e[0m:\e[32m\w\e[0m${PY_PS1}${GIT_PS1}\n\$ "
eval "$(direnv hook bash)"
@ -193,3 +195,18 @@ e()
{
emacsclient --no-wait "$@"
}
venv()
{
# direnv-enabled venv creation.
if ! [[ -d .venv ]]
then
"python$1" -m venv .venv
echo 'PATH=$(pwd)/.venv/bin/:$PATH' >> .envrc
fi
}
pip-common()
{
pip install --upgrade mypy black flake8 jedi-language-server pylint build twine grip tox
}

View File

@ -64,6 +64,14 @@ apt install \
liblzma-dev
```
and for pidgin:
```bash
apt install pidgin \
pidgin-plugin-pack # Pour IRC
purple-discord
```
# Install my dotfiles