Skip to content

Instantly share code, notes, and snippets.

@mstraughan86
Last active September 19, 2017 23:58
Show Gist options
  • Save mstraughan86/b08a93fd2b4fe11d8f9e5a57a3ea55ee to your computer and use it in GitHub Desktop.
Save mstraughan86/b08a93fd2b4fe11d8f9e5a57a3ea55ee to your computer and use it in GitHub Desktop.
Development Workstation Setup
Ubuntu 16.04 Terminal Installation Commands:
sudo chmod 777 /etc/apt/sources.list
sudo printf "\ndeb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list
wget https://dl.google.com/linux/linux_signing_key.pub
sudo apt-key add linux_signing_key.pub
sudo apt update
sudo apt install -y google-chrome-stable
* There is a bug that I encountered... And I fixed it at home but I forgot how.
Extensions:
LastPass
Stylish
... How to make Dev Console dark.
http://cmder.net/
http://conemu.github.io/en/GlobalHotKeys.html#Using_F12_as_global_hotkey
--------------------------------------------
Ubuntu 16.04 Terminal Installation Commands:
sudo apt install -y guake
Auto Start Guake
https://askubuntu.com/questions/368705/how-to-make-guake-start-at-login
Change Preferences:
Open Hotkey from F12 to ~, i cannot use backticks anymore. Oh well.
--------------------------------------------
Ubuntu 16.04 Terminal Installation Commands:
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
sudo apt-get update
sudo apt-get install -y sublime-text
--------------------------------------------
Install Package Control
ctrl+`
Copy and paste code found here: https://packagecontrol.io/installation
Install Addons
GitGutter
Ctrl+Shift+P
Package Control: Install Package
GitGutter
--------------------------------------------
Settings:
{
"font_size": 18,
"line_padding_top": -2,
"line_padding_bottom": -2,
"tab_size": 2,
"translate_tabs_to_spaces": true,
"fade_fold_buttons": false,
"bold_folder_labels": true,
"highlight_line": true,
"caret_style": "phase",
"save_on_focus_lost": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment