Skip to content

Instantly share code, notes, and snippets.

View Lissone's full-sized avatar
📚

Leonardo Lissone Santomero Lissone

📚
View GitHub Profile
@Lissone
Lissone / git-prompt.sh
Last active June 23, 2022 15:29
Git Bash Config (~/Git/etc/profile.d/git-prompt.sh)
if test -f ~/.config/git/git-prompt.sh
then
. ~/.config/git/git-prompt.sh
else
PS1='\[\033]0;Bash: ${PWD//[^[:ascii:]]/?}\007\]' # set window title
PS1="$PS1"'\n' # new line
PS1="$PS1"'\[\033[32m\]' # change to green
PS1="$PS1"'\u@\h ' # user@host<space>
PS1="$PS1"'\[\033[35m\]' # change to purple
PS1="$PS1"'\[\033[33m\]' # change to brownish yellow
@Lissone
Lissone / settings.json
Last active June 25, 2021 16:06
VSCode Settings
{
"editor.fontFamily": "Fira Code",
"editor.fontSize": 14,
"editor.tabSize": 2,
"editor.lineHeight": 20,
"editor.fontLigatures": true,
"editor.renderLineHighlight": "gutter",
"window.zoomLevel": -1,
"workbench.colorTheme": "Omni",