Skip to content

Instantly share code, notes, and snippets.

View Iamanaws's full-sized avatar
🎯
Focusing

Angel J Iamanaws

🎯
Focusing
View GitHub Profile
# prompt
if test -f ~/.config/git/git-prompt.sh
then
. ~/.config/git/git-prompt.sh
else
PS1='\[\033]0;Git Bash:$PWD\007\]' # set window title
PS1="$PS1"'\n\[\033[1;34m\]\w' # \n\[\033[32m\]\u\[\033[35m\]plays \[\033[1;36m\]\w'
if test -z "$WINELOADERNOEXEC"
then
GIT_EXEC_PATH="$(git --exec-path 2>/dev/null)"
@Iamanaws
Iamanaws / Schemas.json
Created November 12, 2021 16:53
Windows Terminal Schemas
{
//One Dark
"background": "#1E2127",
"black": "#000000",
"blue": "#61AFEF",
"brightBlack": "#5C6370",
"brightBlue": "#61AFEF",
"brightCyan": "#56B6C2",
"brightGreen": "#98C379",
"brightPurple": "#C678DD",
# prompt
PS1='\n\[\033[01;34m\]\w\[\033[00m\] \n\$ ' # \[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\] \n\$ '
# ${PWD#"${PWD%/*/*}/"}
PROMPT_DIRTRIM=2