Skip to content

Instantly share code, notes, and snippets.

@o0pmitev
Forked from GooRiOn/setup.md
Created March 2, 2023 18:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save o0pmitev/989ba4cfa97de8b1cf1e639914bce34d to your computer and use it in GitHub Desktop.
Save o0pmitev/989ba4cfa97de8b1cf1e639914bce34d to your computer and use it in GitHub Desktop.
Git For Win + Windows Terminal Setup

Links

Git Bash Profile JSON

{
  "colorScheme": "Tango Dark",
  "commandline": "\"%PROGRAMFILES%\\Git\\usr\\bin\\bash.exe\"  -i -l",
  "font": 
  {
      "face": "JetBrainsMonoNL Nerd Font"
  },
  "guid": "{20f3b363-ad40-4450-923b-77d6e20ab84c}",
  "icon": "%PROGRAMFILES%\\\\Git\\\\mingw64\\\\share\\\\git\\\\git-for-windows.ico\r",
  "name": "Git Bash",
  "startingDirectory": "C:\\Repos",
}

Tango Dark Color Scheme

{
  "background": "#002B36",
  "black": "#000000",
  "blue": "#424242",
  "brightBlack": "#555753",
  "brightBlue": "#E82D72",
  "brightCyan": "#E82D72",
  "brightGreen": "#2FEBC4",
  "brightPurple": "#AD7FA8",
  "brightRed": "#EF2929",
  "brightWhite": "#EEEEEC",
  "brightYellow": "#FCE94F",
  "cursorColor": "#FFFFFF",
  "cyan": "#37FFB5",
  "foreground": "#FAFFF6",
  "green": "#B0D700",
  "name": "Tango Dark",
  "purple": "#75507B",
  "red": "#FF5C5C",
  "selectionBackground": "#FFFFFF",
  "white": "#D3D7CF",
  "yellow": "#C4A000"
}

.bashrc file

# Theme
THEME=$HOME/.bash/themes/git_bash_windows_powerline/theme.bash
if [ -f $THEME ]; then
   . $THEME
fi
unset THEME

alias ls='lsd'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment