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
{ | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.colorTheme": "One Monokai", | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.fontFamily": "JetBrains Mono", | |
"editor.fontSize": 13, | |
"editor.formatOnSave": true, | |
"terminal.external.osxExec": "iTerm.app", | |
"terminal.integrated.rendererType": "dom", | |
"terminal.explorerKind": "external", |
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
ZSH_THEME="powerlevel10k/powerlevel10k" | |
plugins=(git zsh-autosuggestions zsh-syntax-highlighting autojump) | |
source $ZSH/oh-my-zsh.sh | |
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh | |
# ALIASES | |
alias py=python | |
alias tf=terraform | |
alias cleanaws="cat /dev/null > ~/.aws/credentials && cat /dev/null > ~/.aws/config" |
OlderNewer