This file contains 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
[ | |
{ "keys": ["f12"], "command": "reindent", "args": {"single_line": false}}, | |
{ "keys": ["alt+e"], "command": "expand_fqcn" }, | |
{ "keys": ["alt+i"], "command": "find_use" }, | |
{ "keys": ["alt+c"], "command": "insert_php_constructor_property" }, | |
{ "keys": ["alt+f7"], "command": "toggle_comment", "args": { "block": false } } | |
] |
This file contains 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
{ | |
"auto_complete": false, | |
"bold_folder_labels": true, | |
"caret_style": "phase", | |
"detect_indentation": false, | |
"ensure_newline_at_eof_on_save": true, | |
"font_size": 14, | |
"highlight_line": true, | |
"ignored_packages": | |
[ |
This file contains 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
# Disable Photos agent: http://superuser.com/questions/920116/disable-auto-launching-of-photos-application-on-mac-osx-yosemite-el-capitan | |
defaults -currentHost write com.apple.ImageCapture disableHotPlug -bool YES | |
defaults -currentHost write com.apple.Photos disableHotPlug -bool YES |
This file contains 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
# Chrome flags for development | |
--disable-application-cache --media-cache-size=1 --disk-cache-size=1 --"%1" | |
# Delete mac junk | |
del /s /q /f /a .DS_STORE |
This file contains 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
<?php | |
class JekyllValetDriver extends ValetDriver | |
{ | |
/** | |
* Determine if the driver serves the request. | |
* | |
* @param string $sitePath | |
* @param string $siteName | |
* @param string $uri |
This file contains 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
#!/usr/bin/env bash | |
cd "$(dirname "$0")" | |
export DEBIAN_FRONTEND=noninteractive | |
sudo apt-get update -y | |
echo -e "\e[32mInstalling docker...\e[0m" | |
sudo apt-get remove docker docker-engine docker.io docker-compose -y |
This file contains 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
{ | |
"workbench.startupEditor": "newUntitledFile", | |
"tabnine.experimentalAutoImports": true, | |
"editor.fontSize": 20, | |
"editor.lineHeight": 45, | |
"editor.cursorBlinking": "smooth", | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.mouseWheelScrollSensitivity": 1, | |
"editor.trimAutoWhitespace": true, | |
"editor.formatOnSave": true, |
This file contains 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
--install.no-bin-links true | |
--modules-folder /nodemodules | |
--child-concurrency 1 | |
--ignore-scripts true |
This file contains 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
# 00:00:00 user@server:[/current/path] | |
export PS1=export PS1="\[\033[38;5;231m\]\t\[$(tput sgr0)\]\[\033[38;5;15m\] \[$(tput sgr0)\]\[\033[38;5;85m\]\u@\h\[$(tput sgr0)\]\[\033[38;5;15m\]:\[$(tput sgr0)\]\[\033[38;5;195m\][\w]\[$(tput sgr0)\]\[\033[38;5;17m\]:\[$(tput sgr0)\]\[\033[38;5;15m\]\[$(tput sgr0)\]" |
This file contains 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
# Examples generated from http://bashrcgenerator.com/ | |
# Green | |
export PS1=export PS1="\[\033[38;5;231m\]\t\[$(tput sgr0)\]\[\033[38;5;15m\] \[$(tput sgr0)\]\[\033[38;5;85m\]\u@\h\[$(tput sgr0)\]\[\033[38;5;15m\]:\[$(tput sgr0)\]\[\033[38;5;195m\][\w]\[$(tput sgr0)\]\[\033[38;5;17m\]:\[$(tput sgr0)\]\[\033[38;5;15m\]\[$(tput sgr0)\]" | |
# Red | |
export PS1="\t \[$(tput sgr0)\]\[\033[38;5;9m\]\u@\h\[$(tput sgr0)\]\[\033[38;5;15m\]:\[$(tput sgr0)\]\[\033[38;5;1m\][\w]:\[$(tput sgr0)\]\[\033[38;5;15m\] \[$(tput sgr0)\]" |
OlderNewer