- Weapon
- Akarat's Awakening
- Anessazi Edge
- Arreat's Law
- Azurewrath
- Baleful Remnant
- Bastion's Revered
- Blade of the Warlord
- Bone Ringer
- Bovine Bardiche
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
adpyke.codesnap | |
alefragnani.project-manager | |
bradlc.vscode-tailwindcss | |
catppuccin.catppuccin-vsc | |
dbaeumer.vscode-eslint | |
EditorConfig.EditorConfig | |
eamodio.gitlens | |
esbenp.prettier-vscode | |
github.copilot | |
mikestead.dotenv |
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
{ | |
"app/initializers/*.js": { | |
"type": "initializer" | |
}, | |
"app/services/*.js": { | |
"type": "service" | |
}, | |
"app/models/*.js": { | |
"type": "model", |
This file is used to help you navigate around in your project. You will want to install Tpope Vim Projections.
Create a new file .projections.json
and put it in your root project directory and take the above code and put it in there.
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
{ | |
"app/adapters/*.js": { | |
"command": "adapter", | |
"template": [ | |
"// export default DS.{capitalize}Adapter.extend();" | |
] | |
}, | |
"app/components/*.js": { | |
"command": "component", |
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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Launch local", | |
"type": "chrome", | |
"request": "launch", | |
"runtimeExecutable": "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome", | |
"runtimeArgs": [ "--remote-debugging-port=9222" ], | |
"url": "http://localhost:8081/dev.html#/location/cafe", |