This file contains hidden or 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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # All Vagrant configuration is done below. The "2" in Vagrant.configure | |
| # configures the configuration version (we support older styles for | |
| # backwards compatibility). Please don't change it unless you know what | |
| # you're doing. | |
| Vagrant.configure("2") do |config| | |
| # The most common configuration options are documented and commented below. | |
| # For a complete reference, please see the online documentation at |
This file contains hidden or 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
| import sublime | |
| import sublime_plugin | |
| class CloseOtherTabsCommand(sublime_plugin.WindowCommand): | |
| def run(self): | |
| active_group = self.window.active_group() | |
| curr_view_id = self.window.active_view_in_group(active_group).id() | |
| for v in self.window.views_in_group(active_group): | |
| if v.id() == curr_view_id: continue | |
| self.window.focus_view(v) |
This file contains hidden or 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
| -tags,-*.js,-*.css,-*.html,-*.md,-*/storages/*,-*/node_modules/*,-.phpstorm.meta.php,-_ide_helper.php,<project> |
This file contains hidden or 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
| var path = require('path'); | |
| var webpack = require('webpack'); | |
| module.exports = { | |
| entry: './app/index.js', | |
| output: { | |
| filename: 'bundle.js', | |
| path: path.resolve(__dirname, 'dist') | |
| }, |
This file contains hidden or 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
| <?xml version="1.0" encoding="utf-8"?> | |
| <key name="Software"> | |
| <key name="ConEmu"> | |
| <key name=".Vanilla" modified="2017-01-20 10:38:50" build="160710"> | |
| <value name="ColorTable00" type="dword" data="004d4335"/> | |
| <value name="ColorTable01" type="dword" data="006b60eb"/> | |
| <value name="ColorTable02" type="dword" data="008de8c3"/> | |
| <value name="ColorTable03" type="dword" data="0095ebf7"/> | |
| <value name="ColorTable04" type="dword" data="00c4cb80"/> | |
| <value name="ColorTable05" type="dword" data="009024ff"/> |
This file contains hidden or 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
| alias hs="homestead" | |
| alias hsu="homestead up" | |
| alias hss="homestead ssh" | |
| alias hsup="homestead up --provision" | |
| alias hsh="homestead halt" | |
| alias hsr="homestead reload" | |
| alias hsrp="homestead reload --provision" |
This file contains hidden or 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
| alias m:c='php artisan make:controller' | |
| alias m:middle='php artisan make:middleware' | |
| alias m:migration='php artisan make:migration' | |
| alias m:provider='php artisan make:provider' | |
| alias m:listener='php artisan make:listener' | |
| alias m:model='php artisan make:model' | |
| alias m:event='php artisan make:event' | |
| alias migrate='php artisan migrate' | |
| alias rollback='php artisan migrate:rollback' |
This file contains hidden or 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
| BackgroundColour=13,25,38 | |
| ForegroundColour=217,230,242 | |
| CursorColour=217,230,242 | |
| Black=0,0,0 | |
| BoldBlack=38,38,38 | |
| Red=157,84,84 | |
| BoldRed=189,132,132 | |
| Green=84,157,84 | |
| BoldGreen=132,189,132 | |
| Yellow=157,157,84 |
This file contains hidden or 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
| alias g='git' | |
| alias ga='git add' | |
| alias gaa='git add --all' | |
| alias gapa='git add --patch' | |
| alias gb='git branch' | |
| alias gba='git branch -a' | |
| alias gbda='git branch --no-color --merged | command grep -vE "^(\*|\s*(master|develop|dev)\s*$)" | command xargs -n 1 git branch -d' | |
| alias gbl='git blame -b -w' | |
| alias gbnm='git branch --no-merged' | |
| alias gbr='git branch --remote' |
This file contains hidden or 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
Show hidden characters
| { | |
| "variants": [ | |
| { | |
| "name": "PHP CS Fixer", | |
| "cmd": ["${folder}/vendor/bin/php-cs-fixer", "fix", "--config=${folder}/.php-cs-fixer.php", "--allow-risky=yes", "--using-cache=no", "$file"] | |
| }, | |
| { | |
| "name": "PHP Interpreter", | |
| "cmd": [ | |
| "php", |