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
# 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)" |
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
{ | |
//One Dark | |
"background": "#1E2127", | |
"black": "#000000", | |
"blue": "#61AFEF", | |
"brightBlack": "#5C6370", | |
"brightBlue": "#61AFEF", | |
"brightCyan": "#56B6C2", | |
"brightGreen": "#98C379", | |
"brightPurple": "#C678DD", |
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
# 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 |