Compare commits

...

3 commits

Author SHA1 Message Date
Hippolyte Chauvin
075c59ec4c Mise à jour : utilisation de nvim à la place de helix pour git 2023-10-14 22:03:11 +02:00
Hippolyte Chauvin
7cdb673bb4 Correction : PS1 buggué dans la configuration de bash 2023-10-14 22:02:50 +02:00
Hippolyte Chauvin
4d22f92c76 Remaniement : modularisation de la configuration de bash, réglage du PS1 2023-10-14 14:30:03 +02:00
4 changed files with 15 additions and 15 deletions

View file

@ -1,14 +0,0 @@
if [ "$(id -u)" -eq 0 ]; then
ps1_color_1=31
ps1_color_2=32
fi
PS1="\033[0m${ps1_brackets:0:1}\033[1;${ps1_color_1}m\u@\h\033[0m \033[1;${ps1_color_2}m\W\033[0m${ps1_brackets:1:1}\\$ "
shrc_d=/usr/local/etc/sh/shrc.d
if [ -d "$shrc_d" ]; then
for i in "${shrc_d}/"*; do
. "$i"
done
fi

View file

@ -0,0 +1,7 @@
shrc_d=/usr/local/etc/sh/shrc.d
if [ -d "$shrc_d" ]; then
for i in "${shrc_d}/"*; do
. "$i"
done
fi

View file

@ -0,0 +1,7 @@
if [ "$(id -u)" -eq 0 ]; then
ps1_color_1=31
ps1_color_2=32
fi
PS1='\[\033[0m\]'"${ps1_brackets:0:1}"'\[\033[1;'"${ps1_color_1}"'m\]\u@\h\[\033[0m\] \[\033[1;'"${ps1_color_2}"'m\]\W\[\033[0m\]'"${ps1_brackets:1:1}"'\$ '

View file

@ -2,7 +2,7 @@
name = Hippolyte Chauvin
email = hchauvin38@outlook.fr
[core]
editor = hx
editor = nvim
[init]
defaultbranch = main
[pull]