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
# Commonly Used Aliases | |
alias dc='docker compose' | |
alias art="php artisan" | |
alias artisan="php artisan" | |
alias cdump="composer dump-autoload -o" | |
alias composer:dump="composer dump-autoload -o" | |
alias db:reset="php artisan migrate:reset && php artisan migrate --seed" | |
alias dusk="php artisan dusk" | |
alias fresh="php artisan migrate:fresh" |
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
root = true | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
insert_final_newline = true | |
indent_style = space | |
indent_size = 2 | |
trim_trailing_whitespace = true |
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
{ | |
"editor.fontFamily": "JetBrains Mono, 'Cascadia Code', Consolas, 'Courier New', monospace", | |
"editor.detectIndentation": false, | |
"editor.fontLigatures": true, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": [ | |
"comment", | |
"entity.name.type.class", |