- Install Package Control
- Install packages
- Material Theme
- Emmet
- ImprovedMacros for multi-commands
- Set User settings
- Set Key Bindings
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 node | |
- npm install -g angular-cli | |
- ng new projectName --style=scss | |
- ng serve | |
- ng g component navbar | |
- npm install bootstrap@next | |
- edit angular cli config | |
- ng serve | |
- _variable.scss, $orange: orange; | |
- @import '../assets/variables'; |
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
BoldAsFont=no | |
BackgroundColour=0,0,0 | |
Transparency=high | |
OpaqueWhenFocused=no | |
Columns=185 | |
ForegroundColour=131,148,150 | |
Term=xterm | |
CursorColour=220,50,47 | |
Black=7,54,66 | |
BoldBlack=0,43,54 |
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
The MIT License (MIT) | |
Copyright (c) <huenisys> | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: |
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
mklink /J C:\Users\huenisys\.ssh L:\huenisys\.ssh | |
mklink /J C:\Users\huenisys\.vagrant.d L:\huenisys\.vagrant.d | |
mklink /J C:\Users\huenisys\.Virtualbox L:\huenisys\.Virtualbox | |
mklink /J C:\Users\huenisys\Homestead L:\huenisys\Homestead | |
mklink /J C:\Users\huenisys\sites M:\sites |
- $ laravel new laravel55 --dev
- $ composer require laravel/homestead --dev # this gives per project homestead
- $ vendor\bin\homestead make # will create vagrant file
- $ vagrant up
- $ composer require laravel/dusk --dev
- add dusk provider in config using app service provider wrapped to run locally only
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": [";", ";"], "command": "exit_insert_mode", | |
"context": | |
[ | |
{ "key": "setting.command_mode", "operand": false }, | |
{ "key": "setting.is_widget", "operand": false } | |
] | |
}, | |
{ "keys": ["ctrl+shift+r"], "command": "reveal_in_side_bar"}, | |
{ "keys": ["ctrl+alt+r"], "command": "goto_symbol_in_project"}, |
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"?> | |
<phpunit backupGlobals="false" | |
backupStaticAttributes="false" | |
bootstrap="vendor/autoload.php" | |
colors="true" | |
convertErrorsToExceptions="true" | |
convertNoticesToExceptions="true" | |
convertWarningsToExceptions="true" | |
processIsolation="false" | |
stopOnFailure="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
- .gitignore, LICENSE.txt, phpunit.xml, readme.md, tests/, src/ | |
- $ composer init | |
- $ cda | |
- $ composer require illuminate/support |
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
- $ composer validate | |
- $ composer diagnose | |
- $ composer self-update | |
- $ composer create-project laravel/laravel laravel1 --no-progress --profile --prefer-dist | |
- $ composer global require hirak/prestissimo # makes composer run faster |
OlderNewer