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
[Solarized Dark] | |
text(bold)=839496 | |
magenta(bold)=6c71c4 | |
text=839496 | |
white(bold)=fdf6e3 | |
green=859900 | |
red(bold)=cb4b16 | |
green(bold)=586e75 | |
black(bold)=073642 | |
red=dc322f |
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
[alias] | |
st = status | |
co = checkout | |
br = branch -v | |
cm = commit | |
cf = config | |
unstage = reset HEAD -- | |
tree = log --graph --decorate --pretty=oneline --abbrev-commit | |
[core] | |
editor = vim |
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
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", |
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
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 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 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 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 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 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 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> |
OlderNewer