Skip to content

Instantly share code, notes, and snippets.

View empurium's full-sized avatar

Michael Simmons empurium

  • Austin, TX
View GitHub Profile
@empurium
empurium / sublime-settings.json
Last active April 16, 2020 07:41
Sublime settings
{
"color_scheme": "Packages/ayu/ayu-mirage.sublime-color-scheme",
"font_size": 16,
"ignored_packages":
[
"Vintage"
],
"tab_size": 2,
"theme": "ayu-mirage.sublime-theme",
"translate_tabs_to_spaces": true,
@empurium
empurium / node-lts-on-aws-ec2.txt
Created September 26, 2018 19:16
Install Node.js LTS on AWS Linux EC2 instance
# Remove the default nodejs 0.10.x / npm 1.x from the system
# the yum autoremove will clean up unused deps afterward
yum erase nodejs
yum autoremove
# Set up the RPM nodesource for the LTS of your choice
curl --silent --location https://rpm.nodesource.com/setup_8.x | bash -
# Clean up
yum clean all
@empurium
empurium / keybindings.json
Last active May 8, 2020 01:22
Visual Studio Code Keybindings
[
{
"key": "shift+cmd+g",
"command": "workbench.view.scm"
},
{
"key": "alt+cmd+z",
"command": "workbench.action.files.revert"
},
{
@empurium
empurium / vscode-settings.json
Last active June 18, 2020 20:17
Visual Studio Code Config
{
"breadcrumbs.enabled": true,
"window.clickThroughInactive": false,
"window.newWindowDimensions": "inherit",
"window.restoreWindows": "none",
"window.zoomLevel": 0,
"window.title": "${folderName}",
"editor.cursorSurroundingLines": 8,
"editor.dragAndDrop": false,
"editor.fontSize": 14,
[xdebug]
zend_extension="/usr/local/opt/php71-xdebug/xdebug.so"
xdebug.remote_enable=1
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.idekey=PHPSTORM