feat(zed): Add zed config

This commit is contained in:
Ahmad Ansori Palembani 2025-05-29 11:24:10 +07:00
parent 308a2a24e2
commit 941b30413c
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6
4 changed files with 57 additions and 0 deletions

9
common
View file

@ -8,3 +8,12 @@ prompt() {
* ) return 1 ;;
esac;
}
prompt_pos() {
printf "$1"
read INPUT
case $INPUT in
[nN] ) return 0 ;;
* ) return 1 ;;
esac;
}