These are my personalized custom script to setup my developer environment in any computer. The bash script is an upgrade version from a script generated by Quicky.Dev, and this VS Code theme was a custom theme made by the-dvlpr.
Software instalation upgrade from Quicky.dev script:
- Brave Browser
- Spotify
- Slack
- Gitkraken
- Grammarly
- 1Password
- Anaconda
- App Cleaner
- Fantastical
- Flotato
- Devdocs
- Oh-my-zsh
-
Clone repository
git clone https://github.com/BriantOliveira/Quick-Dev-Env-Setup.git
-
Navigate to the directory
Quick-Dev-Env-Setup
-
Execute bash script
bash script.sh or bash <(curl -s https://raw.githubusercontent.com/BriantOliveira/Quick-Dev-Env-Setup/master/script.sh)
-
Copy aliases and zsh cofiguration over the .zshrc to your root user .zshrc file
cp -R .zshrc ~/
-
Save changes
source ~/.zshrc
-
Replace any theme settings you have in your settings file (Preferences > Settings or ⌘, on mac) with the theme portion (everything before the first line break) in the settings.json file. Upon saving you should be prompted to download the "One Dark Pro Vivid" theme which was the base for these cusomizations.
"workbench.colorCustomizations": {
"[One Dark Pro Vivid]": {
"activityBar.background": "#0c0c0c",
"editor.background": "#000000",
"editorGroupHeader.tabsBackground": "#0c0c0c",
"tab.inactiveBackground": "#000000",
"tab.activeBackground": "#111111",
"sideBar.background": "#050505",
"sideBarSectionHeader.background": "#111111",
"list.hoverBackground": "#22283b",
"terminal.foreground": "#c8c8c8"
}
},
"editor.tokenColorCustomizations": {
"[One Dark Pro Vivid]": {
"functions": "#ff0d86",
"keywords": "#ff0d86",
"strings": "#00f693",
"numbers": "#faef00",
"types": "#00fffb"
}
}```