Last active
March 31, 2020 23:33
-
-
Save chalkpe/3e18a2babaa4fefce0a367cd8a2ddfde to your computer and use it in GitHub Desktop.
Windows Terminal + WSL Ubuntu + Oh My Zsh
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
source /home/chalk/antigen.zsh | |
antigen use oh-my-zsh | |
antigen bundle git | |
antigen bundle sudo | |
antigen bundle common-aliases | |
antigen bundle command-not-found | |
antigen bundle zsh-users/zsh-autosuggestions | |
antigen bundle zsh-users/zsh-syntax-highlighting | |
antigen bundle MichaelAquilina/zsh-you-should-use | |
antigen theme denysdovhan/spaceship-prompt | |
antigen apply | |
SPACESHIP_CHAR_SUFFIX=" " | |
PATH="$(yarn global bin):$PATH" |
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
{ | |
"alwaysShowTabs" : false, | |
"defaultProfile" : "{01960e86-4598-46d2-9ebd-e666c5f78741}", | |
"initialCols" : 120, | |
"initialRows" : 30, | |
"requestedTheme" : "dark", | |
"showTabsInTitlebar" : false, | |
"showTerminalTitleInTitlebar" : true | |
} |
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
{ | |
"acrylicOpacity" : 0.75, | |
"closeOnExit" : true, | |
"colorScheme" : "Base16 Tomorrow Dark", | |
"commandline" : "wsl.exe ~ -d Ubuntu", | |
"cursorColor" : "#707880", | |
"cursorHeight" : 25, | |
"cursorShape" : "vintage", | |
"fontFace" : "Fira Code", | |
"fontSize" : 10, | |
"guid" : "{01960e86-4598-46d2-9ebd-e666c5f78741}", | |
"historySize" : 9001, | |
"icon" : "ms-appx:///ProfileIcons/{ba50f801-2d96-4517-a737-575f32f0fb61}.png", | |
"name" : "Ubuntu", | |
"padding" : "10", | |
"snapOnInput" : true, | |
"useAcrylic" : true | |
} |
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
{ | |
"background" : "#1D1F21", | |
"black" : "#282A2E", | |
"blue" : "#5F819D", | |
"brightBlack" : "#373B41", | |
"brightBlue" : "#81A2BE", | |
"brightCyan" : "#8ABEB7", | |
"brightGreen" : "#B5BD68", | |
"brightPurple" : "#B294BB", | |
"brightRed" : "#CC6666", | |
"brightWhite" : "#C5C8C6", | |
"brightYellow" : "#F0C674", | |
"cyan" : "#000000", | |
"foreground" : "#C5C8C6", | |
"green" : "#8C9440", | |
"name" : "Base16 Tomorrow Dark", | |
"purple" : "#85678F", | |
"red" : "#A54242", | |
"white" : "#707880", | |
"yellow" : "#DE935F" | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment