├── .gitignore ├── .vimrc ├── LICENSE ├── README.md ├── docs └── pt_br.md ├── files └── nginx │ ├── example-php56.development │ ├── example-php74.development │ └── example-php80.development ├── fonts └── FiraCode_2.zip ├── functions ├── files.sh ├── packages.sh └── text.sh ├── img └── dracula_wallpaper.png ├── install.sh ├── my-settings-vscode.json ├── prints └── ubuntu_19.10 │ ├── dir.png │ └── home.png ├── scripts ├── checking_installed_packages.sh ├── config_so_dracula_theme.sh ├── database.sh ├── essentials_packages.sh ├── finalization.sh ├── hello.sh ├── log.sh ├── programming_languages.sh ├── server.sh ├── server_configuration.sh ├── softwares.sh ├── tools.sh └── vim_configuration.sh └── setup.sh.example /.gitignore: -------------------------------------------------------------------------------- 1 | setup.sh -------------------------------------------------------------------------------- /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/.vimrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/README.md -------------------------------------------------------------------------------- /docs/pt_br.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/docs/pt_br.md -------------------------------------------------------------------------------- /files/nginx/example-php56.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/files/nginx/example-php56.development -------------------------------------------------------------------------------- /files/nginx/example-php74.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/files/nginx/example-php74.development -------------------------------------------------------------------------------- /files/nginx/example-php80.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/files/nginx/example-php80.development -------------------------------------------------------------------------------- /fonts/FiraCode_2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/fonts/FiraCode_2.zip -------------------------------------------------------------------------------- /functions/files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/functions/files.sh -------------------------------------------------------------------------------- /functions/packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/functions/packages.sh -------------------------------------------------------------------------------- /functions/text.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/functions/text.sh -------------------------------------------------------------------------------- /img/dracula_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/img/dracula_wallpaper.png -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/install.sh -------------------------------------------------------------------------------- /my-settings-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/my-settings-vscode.json -------------------------------------------------------------------------------- /prints/ubuntu_19.10/dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/prints/ubuntu_19.10/dir.png -------------------------------------------------------------------------------- /prints/ubuntu_19.10/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/prints/ubuntu_19.10/home.png -------------------------------------------------------------------------------- /scripts/checking_installed_packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/scripts/checking_installed_packages.sh -------------------------------------------------------------------------------- /scripts/config_so_dracula_theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/scripts/config_so_dracula_theme.sh -------------------------------------------------------------------------------- /scripts/database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/scripts/database.sh -------------------------------------------------------------------------------- /scripts/essentials_packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/scripts/essentials_packages.sh -------------------------------------------------------------------------------- /scripts/finalization.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/scripts/finalization.sh -------------------------------------------------------------------------------- /scripts/hello.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/scripts/hello.sh -------------------------------------------------------------------------------- /scripts/log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/scripts/log.sh -------------------------------------------------------------------------------- /scripts/programming_languages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/scripts/programming_languages.sh -------------------------------------------------------------------------------- /scripts/server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/scripts/server.sh -------------------------------------------------------------------------------- /scripts/server_configuration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/scripts/server_configuration.sh -------------------------------------------------------------------------------- /scripts/softwares.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/scripts/softwares.sh -------------------------------------------------------------------------------- /scripts/tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/scripts/tools.sh -------------------------------------------------------------------------------- /scripts/vim_configuration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/scripts/vim_configuration.sh -------------------------------------------------------------------------------- /setup.sh.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego-Brocanelli/workstation_configuration/HEAD/setup.sh.example --------------------------------------------------------------------------------