Skip to content

Instantly share code, notes, and snippets.

View atorscho's full-sized avatar

Alex Torscho atorscho

  • France & Slovakia
View GitHub Profile
@atorscho
atorscho / .zshrc
Last active April 23, 2022 09:34
ZSH Configuration
# Load additional aliases
source $HOME/.zshrc-aliases
#################
### FUNCTIONS ###
#################
# Create a directory and open it right after
mkcd() {
mkdir $1 && cd "$_";
@atorscho
atorscho / .prettierrc.yaml
Last active September 17, 2024 22:23
Advanced Vue Inertia Project
arrowParens: "avoid"
bracketSameLine: false
printWidth: 120
semi: false
singleQuote: true
tabWidth: 4
trailingComma: "all"
plugins:
- prettier-plugin-tailwindcss