This file contains hidden or 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
PROMPT="%~ " | |
alias zshrc="vim ~/.zshrc && source ~/.zshrc" | |
alias ll="ls -lah" | |
alias cls="clear" | |
alias pr="cd ~/Projects" | |
alias dev="npm run dev" | |
alias start="npm run start" | |
alias stop="npm run stop" |
This file contains hidden or 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
PROMPT="%~ " | |
alias zshrc="vim ~/.zshrc" | |
alias rc="source ~/.zshrc" | |
alias ll="ls -lah" | |
alias cls="pr && clear" | |
alias pr="cd ~/Projects" | |
alias tap="cd ~/Projects/Tapestry" | |
alias dev="npm run dev" | |
alias start="npm run start" |
This file contains hidden or 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
PROMPT="%~ " | |
alias zshrc="vim ~/.zshrc" | |
alias rc="source ~/.zshrc" | |
alias ll="ls -lah" | |
alias cls="pr && clear" | |
alias pr="cd ~/Projects" | |
alias tap="cd ~/Projects/Tapestry" | |
alias dev="npm run dev" | |
alias start="npm run start" |
This file contains hidden or 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
PROMPT="%~ " | |
alias zshrc="vim ~/.zshrc" | |
alias rc="source ~/.zshrc" | |
alias ll="ls -lah" | |
alias cls="pr && clear" | |
alias pr="cd ~/Projects" | |
alias tap="cd ~/Projects/Tapestry" | |
alias dev="npm run dev" | |
alias start="npm run start" |
This file contains hidden or 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
[ | |
{ | |
"key": "cmd+i", | |
"command": "composerMode.agent" | |
}, | |
{ | |
"key": "ctrl+n", | |
"command": "explorer.newFile" | |
}, | |
{ |
This file contains hidden or 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
{ | |
"private": true, | |
"type": "module", | |
"scripts": { | |
"build": "vite build", | |
"dev": "vite", | |
"start": "nohup npm run dev > vite.log 2>&1 &", | |
"stop": "pkill \"npm run dev\"" | |
}, | |
"devDependencies": { |
This file contains hidden or 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
<?php | |
use Illuminate\Support\MessageBag; | |
if (!function_exists("page")) { | |
function page($component, $props = [], $replaceDotsWithSlashes = true) | |
{ | |
if ($replaceDotsWithSlashes) { | |
$component = str_replace(".", "/", $component); | |
} |
This file contains hidden or 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 commit="git add -A && git commit -S -m " | |
alias pr="cd ~/Projects" | |
# Node JS | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "/opt/homebrew/opt/nvm/nvm.sh" ] && \. "/opt/homebrew/opt/nvm/nvm.sh" # This loads nvm | |
[ -s "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" ] && \. "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" # This loads nvm bash_completion | |
# PHP | |
export PATH="$HOME/.composer/vendor/bin:$PATH" |
This file contains hidden or 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
gh repo list $repo --limit 4000 | while read -r repo _; do gh repo clone "$repo" "$repo" done | |
laravel | |
vercel | |
tanstack | |
twbs | |
jlevy | |
jackfrued |
This file contains hidden or 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
code --install-extension aaron-bond.better-comments | |
code --install-extension adrianwilczynski.alpine-js-intellisense | |
code --install-extension ahmadawais.shades-of-purple | |
code --install-extension alexcvzz.vscode-sqlite | |
code --install-extension antfu.browse-lite | |
code --install-extension antfu.vite | |
code --install-extension bmewburn.vscode-intelephense-client | |
code --install-extension bradlc.vscode-tailwindcss | |
code --install-extension christian-kohler.path-intellisense | |
code --install-extension dart-code.dart-code |
NewerOlder