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
arrowParens: "avoid" | |
bracketSameLine: false | |
printWidth: 120 | |
semi: false | |
singleQuote: true | |
tabWidth: 4 | |
trailingComma: "all" | |
plugins: | |
- prettier-plugin-tailwindcss |
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
# Load additional aliases | |
source $HOME/.zshrc-aliases | |
################# | |
### FUNCTIONS ### | |
################# | |
# Create a directory and open it right after | |
mkcd() { | |
mkdir $1 && cd "$_"; |