Skip to content

Instantly share code, notes, and snippets.

@iamshubhamjangle
Forked from GooRiOn/setup.md
Last active October 25, 2023 16:50
Show Gist options
  • Select an option

  • Save iamshubhamjangle/295d928b42788158a69312a8b2d2ff10 to your computer and use it in GitHub Desktop.

Select an option

Save iamshubhamjangle/295d928b42788158a69312a8b2d2ff10 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

Edit C:\Users\shubh\AppData\Local\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState > settings.json

{
    "background": "#0C0C0C",
    "black": "#000000",
    "blue": "#424242",
    "brightBlack": "#555753",
    "brightBlue": "#E82D72",
    "brightCyan": "#E82D72",
    "brightGreen": "#2FEBC4",
    "brightPurple": "#AD7FA8",
    "brightRed": "#EF2929",
    "brightWhite": "#EEEEEC",
    "brightYellow": "#FCE94F",
    "cursorColor": "#12BA7C",
    "cyan": "#12BA7C",
    "foreground": "#FAFFF6",
    "green": "#B0D700",
    "name": "Shuby 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