Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@awolad
Last active December 24, 2018 11:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save awolad/5286a77546502ff5fe470b6ff99c0651 to your computer and use it in GitHub Desktop.
Save awolad/5286a77546502ff5fe470b6ff99c0651 to your computer and use it in GitHub Desktop.
// Extension: beautify, Material icon theme, Material theme, Atom one dark, vtuer
// Options: auto save enabled, Vue file formatting: "vetur.format.defaultFormatter.html": "js-beautify-html" (https://github.com/vuejs/vetur/issues/543)
------------------------------------------------------------------------------------------
// setting from Japanese during working on igs - grow-academic-dashboard
{
"editor.formatOnSave": true,
"workbench.colorTheme": "Atom One Dark",
"workbench.iconTheme": "material-icon-theme",
"editor.fontSize": 16,
"editor.fontLigatures": true,
"editor.mouseWheelZoom": true,
"window.title": "${activeEditorLong}${separator}${rootName}",
"vetur.format.defaultFormatter.css": "prettier",
"vetur.format.defaultFormatter.html": "prettyhtml",
"vetur.format.defaultFormatter.ts": "prettier",
"vetur.format.defaultFormatterOptions": {
"prettyhtml": {
"prettier": true,
"wrapAttributes": false
}
},
"editor.minimap.enabled": false,
"editor.fontFamily": "Monaco, Courier New, Monospace, Menlo",
"editor.cursorBlinking": "smooth",
"editor.cursorWidth": 3,
"editor.find.autoFindInSelection": true,
"workbench.tree.horizontalScrolling": true,
"workbench.editor.highlightModifiedTabs": true
}
------------------------------------------------------------------------------------------
git checkout -b develop // if not exist branch
git checkout develop // if exist `develop branch`
git pull
git checkout feature/student-management
git merge develop
pull requestは、masterではなく、developに向けて出してください。
------------------------------------------------------------------------------------------
// prettier global install
npm install -g prettier
source ~/.zshrc
prettier -l ./src/**/*.ts
---------------------------------------------------------------------
vs code for PHP Laravel Development
---------------------------------
- Auto Close Tag
- PHP Intellisense / or / PHP Intellisense Crane
- phpfmt - PHP formatter
- Laravel blade snippet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment