Last active
March 27, 2026 06:19
-
-
Save swyxio/7fa1009e460ecb818d5e6d9ca4616a05 to your computer and use it in GitHub Desktop.
my dotfiles - more info here https://www.swyx.io/new-mac-setup
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
| .DS_Store | |
| ._.DS_Store | |
| **/.DS_Store | |
| **/._.DS_Store | |
| .vscode | |
| .idea | |
| Thumbs.db | |
| # used to need to run git config --global core.excludesfile ~/.gitignore_global to set this but apparently no longer needed https://x.com/bate5a55/status/1840594630972191118 | |
| # if using git submodules | |
| # git config --global submodule.recurse true | |
| # git config --global fetch.submoduleRecurse on-demand |
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
| set autoindent | |
| set indentexpr=off | |
| set expandtab | |
| set tabstop=4 | |
| set sw=4 | |
| set textwidth=80 | |
| set nohls | |
| set noshowmatch | |
| syntax enable | |
| setlocal spell spelllang=en_us | |
| set nospell | |
| set background=dark | |
| autocmd VimEnter * set vb t_vb= | |
| set modeline | |
| set nojoinspaces " pesky 2-spaces after the period thing | |
| set shortmess=AITstW " I hate: naggy dialogs, intros, long messages | |
| set noshowcmd | |
| set nowritebackup | |
| set noswapfile | |
| set nobackup | |
| " don't delete whitespace-only lines leaving insert mode: | |
| inoremap <CR> x<BS><CR>x<BS> | |
| inoremap <up> x<BS><up> | |
| inoremap <down> x<BS><down> | |
| nnoremap o ox<BS> | |
| nnoremap O Ox<BS> | |
| " for fzf https://github.com/junegunn/fzf | |
| set rtp+=/usr/local/opt/fzf | |
| " fuck everything about the 'Press ENTER' message: | |
| set showcmd | |
| set shortmess=at | |
| " 2-space indent for html and json files | |
| autocmd BufRead,BufNewFile *.json,*.html,*.css,*.svg set sw=2 tabstop=2 | |
| autocmd BufRead,BufNewFile Makefile,makefile,*Makefile,*makefile set noexpandtab |
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
| # ============================================================================= | |
| # SWYX .zshrc — 2025 edition | |
| # Merged from gist + 2025 improvements (uv, colima, powerlevel10k, z) | |
| # Dotfiles gist: https://gist.github.com/swyxio/7fa1009e460ecb818d5e6d9ca4616a05 | |
| # ============================================================================= | |
| # --- Oh-My-ZSH --- | |
| export ZSH="$HOME/.oh-my-zsh" | |
| ZSH_THEME="powerlevel10k/powerlevel10k" | |
| # To switch back to original robbyrussell theme: ZSH_THEME="robbyrussell" | |
| plugins=( | |
| git | |
| zsh-autosuggestions | |
| zsh-syntax-highlighting | |
| z | |
| ) | |
| source $ZSH/oh-my-zsh.sh | |
| # --- Homebrew --- | |
| eval "$(/opt/homebrew/bin/brew shellenv)" | |
| # --- fnm (Fast Node Manager) - replaces nvm --- | |
| eval "$(fnm env --use-on-cd)" | |
| # --- uv (Python) - Astral's replacement for pip/pyenv/conda --- | |
| [ -f "$HOME/.local/bin/env" ] && source "$HOME/.local/bin/env" | |
| # --- z (directory jumping) --- | |
| [ -f /opt/homebrew/etc/profile.d/z.sh ] && . /opt/homebrew/etc/profile.d/z.sh | |
| # ============================================================================= | |
| # ALIASES — File Management | |
| # ============================================================================= | |
| alias mv="mv -iv" | |
| alias cp="cp -iv" | |
| alias lsd="ls -ltr" | |
| alias rm=trash | |
| # ============================================================================= | |
| # ALIASES — Shell Management | |
| # ============================================================================= | |
| alias zs="source ~/.zshrc" | |
| alias zshrc="vi ~/.zshrc" | |
| # ============================================================================= | |
| # ALIASES — Git | |
| # ============================================================================= | |
| alias gclone="git clone --depth 1 " | |
| alias gpom="git push origin main" | |
| alias gpo="git push origin " | |
| alias gset="git remote set-url" | |
| alias gs="git status" | |
| alias gadmit="git add . && git commit -m" | |
| alias gc="git checkout" | |
| alias gcb="git checkout -b " | |
| alias gupdatefork="git fetch upstream && git checkout master && git rebase upstream/master" | |
| alias gcm="git checkout main 2> /dev/null || git checkout master" | |
| # git log with fancy formatting | |
| alias gl="git log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all" | |
| alias glr='gl -n 7' | |
| # git branch cleanup | |
| alias git-clean-merged="git branch --merged master | grep -v 'master$' | xargs git branch -d" | |
| alias git-clean-remote-merged="git branch -r --merged | grep -v master | sed 's/origin\///' | xargs -n 1 git push --delete origin" | |
| # git commit summary | |
| alias gitsum='git log --pretty=format:"* %s" --author `git config user.email`' | |
| # ============================================================================= | |
| # ALIASES — npm/pnpm | |
| # ============================================================================= | |
| alias ni="npm install" | |
| alias nr="npm run" | |
| alias pi="pnpm install" | |
| alias pr="pnpm run" | |
| alias ncu="npm-check-updates" | |
| alias run="npm run" | |
| alias yb="pnpm run build || npm run build" | |
| alias ys="pnpm run start || npm run start" | |
| # ============================================================================= | |
| # ALIASES — Editors & Tools | |
| # ============================================================================= | |
| alias cc="claude --dangerously-skip-permissions" | |
| alias co="codex --dangerously-bypass-approvals-and-sandbox" | |
| alias fucking=sudo | |
| alias ytdlp='yt-dlp -f "bestvideo[ext=mp4][height<=720]+bestaudio[ext=m4a]/best[ext=mp4]/best" ' | |
| alias json_pretty="pbpaste | python -m json.tool | pbcopy" | |
| # ============================================================================= | |
| # ALIASES — Docker via Colima | |
| # ============================================================================= | |
| alias dstart="colima start" | |
| alias dstop="colima stop" | |
| alias dc="docker-compose" | |
| # ============================================================================= | |
| # FUNCTIONS — Directory | |
| # ============================================================================= | |
| # mkcdir: create directory and cd into it | |
| function mkcdir () { | |
| mkdir -p -- "$1" && | |
| cd -P -- "$1" | |
| } | |
| # tree: show directory tree with sane defaults | |
| function t() { | |
| tree -I '.git|node_modules|bower_components|.DS_Store' --dirsfirst --filelimit 15 -L ${1:-3} -aC $2 | |
| } | |
| # ============================================================================= | |
| # FUNCTIONS — AI Commit Message Generation (ggadmit) | |
| # ============================================================================= | |
| unalias ggadmit 2>/dev/null | |
| ggadmit() { | |
| git add . | |
| local tmpfile=$(mktemp) | |
| printf 'Generate a concise git commit message for these changes...\n%s' "$(git diff --cached)" > "$tmpfile" | |
| local msg=$(devin --model claude-sonnet-4.5 -p --prompt-file "$tmpfile") | |
| rm -f "$tmpfile" | |
| if [ -z "$msg" ]; then | |
| echo "Error: devin returned empty commit message" >&2 | |
| return 1 | |
| fi | |
| git commit -m "$msg" | |
| } | |
| # ============================================================================= | |
| # FUNCTIONS — AI Command Generation (please) | |
| # ============================================================================= | |
| needs() { | |
| which "$1" > /dev/null 2>&1 || { echo "I require $1 but it's not installed. Aborting." >&2; return 1; } | |
| } | |
| platform() { | |
| case "$OSTYPE" in | |
| darwin*) echo "macOS" ;; | |
| linux*) echo "Linux" ;; | |
| *) echo "Unknown" ;; | |
| esac | |
| } | |
| _generate_curl_api_request_for_please() { | |
| local prompt="$1" | |
| local model="${2:-gpt-4}" | |
| local api_key="${OPENAI_API_KEY}" | |
| if [ -z "$api_key" ]; then | |
| echo "Error: OPENAI_API_KEY not set" >&2 | |
| return 1 | |
| fi | |
| curl -s https://api.openai.com/v1/chat/completions \ | |
| -H "Content-Type: application/json" \ | |
| -H "Authorization: Bearer $api_key" \ | |
| -d "{ | |
| \"model\": \"$model\", | |
| \"messages\": [ | |
| {\"role\": \"system\", \"content\": \"You are a helpful bash expert. Generate a single bash command to accomplish the task. Output ONLY the command, no explanations.\"}, | |
| {\"role\": \"user\", \"content\": \"$prompt\"} | |
| ], | |
| \"temperature\": 0 | |
| }" | grep -o '"content":"[^"]*' | head -1 | sed 's/"content":"//' | |
| } | |
| please() { | |
| needs gum | |
| local prompt="$1" | |
| local model="${2:-gpt-4}" | |
| if [ -z "$prompt" ]; then | |
| echo "Usage: please <description> [model]" >&2 | |
| return 1 | |
| fi | |
| local cmd=$(_generate_curl_api_request_for_please "$prompt" "$model") | |
| if [ -z "$cmd" ]; then | |
| echo "Error: Failed to generate command" >&2 | |
| return 1 | |
| fi | |
| echo "Generated command:" | |
| echo " $cmd" | |
| echo "" | |
| if gum confirm "Execute this command?"; then | |
| eval "$cmd" | |
| else | |
| echo "Command not executed." | |
| fi | |
| } | |
| # ============================================================================= | |
| # PATH & ENVIRONMENT | |
| # ============================================================================= | |
| export PATH="$HOME/.local/bin:$PATH" | |
| export PATH="/opt/homebrew/bin:$PATH" | |
| # Editor preferences | |
| export EDITOR="cursor" | |
| export VISUAL="cursor" | |
| # ============================================================================= | |
| # KEYBOARD BINDINGS | |
| # ============================================================================= | |
| bindkey '^\[\[H' beginning-of-line # Home key | |
| bindkey '^\[\[F' end-of-line # End key | |
| bindkey "^\[\[3-" delete-char # Delete key | |
| bindkey '^\[\[1;5D' backward-word # Ctrl+Left | |
| bindkey '^\[\[1;5C' forward-word # Ctrl+Right | |
| # ============================================================================= | |
| # POWERLEVEL10K THEME | |
| # ============================================================================= | |
| # To customize prompt, run `p10k configure` or edit ~/.p10k.zsh. | |
| [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh |
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
| # vim:ft=zsh ts=2 sw=2 sts=2 | |
| # | |
| # agnoster's Theme - https://gist.github.com/3712874 | |
| # A Powerline-inspired theme for ZSH | |
| # | |
| # # README | |
| # | |
| # In order for this theme to render correctly, you will need a | |
| # [Powerline-patched font](https://github.com/Lokaltog/powerline-fonts). | |
| # Make sure you have a recent version: the code points that Powerline | |
| # uses changed in 2012, and older versions will display incorrectly, | |
| # in confusing ways. | |
| # | |
| # In addition, I recommend the | |
| # [Solarized theme](https://github.com/altercation/solarized/) and, if you're | |
| # using it on Mac OS X, [iTerm 2](https://iterm2.com/) over Terminal.app - | |
| # it has significantly better color fidelity. | |
| # | |
| # If using with "light" variant of the Solarized color schema, set | |
| # SOLARIZED_THEME variable to "light". If you don't specify, we'll assume | |
| # you're using the "dark" variant. | |
| # | |
| # # Goals | |
| # | |
| # The aim of this theme is to only show you *relevant* information. Like most | |
| # prompts, it will only show git information when in a git working directory. | |
| # However, it goes a step further: everything from the current user and | |
| # hostname to whether the last call exited with an error to whether background | |
| # jobs are running in this shell will all be displayed automatically when | |
| # appropriate. | |
| ### Segment drawing | |
| # A few utility functions to make it easy and re-usable to draw segmented prompts | |
| CURRENT_BG='NONE' | |
| case ${SOLARIZED_THEME:-dark} in | |
| light) CURRENT_FG='white';; | |
| *) CURRENT_FG='black';; | |
| esac | |
| # Special Powerline characters | |
| () { | |
| local LC_ALL="" LC_CTYPE="en_US.UTF-8" | |
| # NOTE: This segment separator character is correct. In 2012, Powerline changed | |
| # the code points they use for their special characters. This is the new code point. | |
| # If this is not working for you, you probably have an old version of the | |
| # Powerline-patched fonts installed. Download and install the new version. | |
| # Do not submit PRs to change this unless you have reviewed the Powerline code point | |
| # history and have new information. | |
| # This is defined using a Unicode escape sequence so it is unambiguously readable, regardless of | |
| # what font the user is viewing this source code in. Do not replace the | |
| # escape sequence with a single literal character. | |
| # Do not change this! Do not make it '\u2b80'; that is the old, wrong code point. | |
| SEGMENT_SEPARATOR=$'\ue0b0' | |
| } | |
| # Begin a segment | |
| # Takes two arguments, background and foreground. Both can be omitted, | |
| # rendering default background/foreground. | |
| prompt_segment() { | |
| local bg fg | |
| [[ -n $1 ]] && bg="%K{$1}" || bg="%k" | |
| [[ -n $2 ]] && fg="%F{$2}" || fg="%f" | |
| if [[ $CURRENT_BG != 'NONE' && $1 != $CURRENT_BG ]]; then | |
| echo -n " %{$bg%F{$CURRENT_BG}%}$SEGMENT_SEPARATOR%{$fg%} " | |
| else | |
| echo -n "%{$bg%}%{$fg%} " | |
| fi | |
| CURRENT_BG=$1 | |
| [[ -n $3 ]] && echo -n $3 | |
| } | |
| # End the prompt, closing any open segments | |
| prompt_end() { | |
| if [[ -n $CURRENT_BG ]]; then | |
| echo -n " %{%k%F{$CURRENT_BG}%}$SEGMENT_SEPARATOR" | |
| else | |
| echo -n "%{%k%}" | |
| fi | |
| echo -n "%{%f%}" | |
| CURRENT_BG='' | |
| } | |
| ### Prompt components | |
| # Each component will draw itself, and hide itself if no information needs to be shown | |
| # Context: user@hostname (who am I and where am I) | |
| prompt_context() { | |
| if [[ "$USERNAME" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then | |
| prompt_segment black default "%(!.%{%F{yellow}%}.)%n@%m" | |
| fi | |
| } | |
| # Git: branch/detached head, dirty status | |
| prompt_git() { | |
| (( $+commands[git] )) || return | |
| if [[ "$(git config --get oh-my-zsh.hide-status 2>/dev/null)" = 1 ]]; then | |
| return | |
| fi | |
| local PL_BRANCH_CHAR | |
| () { | |
| local LC_ALL="" LC_CTYPE="en_US.UTF-8" | |
| PL_BRANCH_CHAR=$'\ue0a0' # | |
| } | |
| local ref dirty mode repo_path | |
| if [[ "$(git rev-parse --is-inside-work-tree 2>/dev/null)" = "true" ]]; then | |
| repo_path=$(git rev-parse --git-dir 2>/dev/null) | |
| dirty=$(parse_git_dirty) | |
| ref=$(git symbolic-ref HEAD 2> /dev/null) || ref="➦ $(git rev-parse --short HEAD 2> /dev/null)" | |
| if [[ -n $dirty ]]; then | |
| prompt_segment yellow black | |
| else | |
| prompt_segment green $CURRENT_FG | |
| fi | |
| if [[ -e "${repo_path}/BISECT_LOG" ]]; then | |
| mode=" <B>" | |
| elif [[ -e "${repo_path}/MERGE_HEAD" ]]; then | |
| mode=" >M<" | |
| elif [[ -e "${repo_path}/rebase" || -e "${repo_path}/rebase-apply" || -e "${repo_path}/rebase-merge" || -e "${repo_path}/../.dotest" ]]; then | |
| mode=" >R>" | |
| fi | |
| setopt promptsubst | |
| autoload -Uz vcs_info | |
| zstyle ':vcs_info:*' enable git | |
| zstyle ':vcs_info:*' get-revision true | |
| zstyle ':vcs_info:*' check-for-changes true | |
| zstyle ':vcs_info:*' stagedstr '✚' | |
| zstyle ':vcs_info:*' unstagedstr '±' | |
| zstyle ':vcs_info:*' formats ' %u%c' | |
| zstyle ':vcs_info:*' actionformats ' %u%c' | |
| vcs_info | |
| echo -n "${ref/refs\/heads\//$PL_BRANCH_CHAR }${vcs_info_msg_0_%% }${mode}" | |
| fi | |
| } | |
| prompt_bzr() { | |
| (( $+commands[bzr] )) || return | |
| # Test if bzr repository in directory hierarchy | |
| local dir="$PWD" | |
| while [[ ! -d "$dir/.bzr" ]]; do | |
| [[ "$dir" = "/" ]] && return | |
| dir="${dir:h}" | |
| done | |
| local bzr_status status_mod status_all revision | |
| if bzr_status=$(bzr status 2>&1); then | |
| status_mod=$(echo -n "$bzr_status" | head -n1 | grep "modified" | wc -m) | |
| status_all=$(echo -n "$bzr_status" | head -n1 | wc -m) | |
| revision=$(bzr log -r-1 --log-format line | cut -d: -f1) | |
| if [[ $status_mod -gt 0 ]] ; then | |
| prompt_segment yellow black "bzr@$revision ✚" | |
| else | |
| if [[ $status_all -gt 0 ]] ; then | |
| prompt_segment yellow black "bzr@$revision" | |
| else | |
| prompt_segment green black "bzr@$revision" | |
| fi | |
| fi | |
| fi | |
| } | |
| prompt_hg() { | |
| (( $+commands[hg] )) || return | |
| local rev st branch | |
| if $(hg id >/dev/null 2>&1); then | |
| if $(hg prompt >/dev/null 2>&1); then | |
| if [[ $(hg prompt "{status|unknown}") = "?" ]]; then | |
| # if files are not added | |
| prompt_segment red white | |
| st='±' | |
| elif [[ -n $(hg prompt "{status|modified}") ]]; then | |
| # if any modification | |
| prompt_segment yellow black | |
| st='±' | |
| else | |
| # if working copy is clean | |
| prompt_segment green $CURRENT_FG | |
| fi | |
| echo -n $(hg prompt "☿ {rev}@{branch}") $st | |
| else | |
| st="" | |
| rev=$(hg id -n 2>/dev/null | sed 's/[^-0-9]//g') | |
| branch=$(hg id -b 2>/dev/null) | |
| if `hg st | grep -q "^\?"`; then | |
| prompt_segment red black | |
| st='±' | |
| elif `hg st | grep -q "^[MA]"`; then | |
| prompt_segment yellow black | |
| st='±' | |
| else | |
| prompt_segment green $CURRENT_FG | |
| fi | |
| echo -n "☿ $rev@$branch" $st | |
| fi | |
| fi | |
| } | |
| # Dir: current working directory | |
| prompt_dir() { | |
| prompt_segment cyan $CURRENT_FG '%1d' | |
| # prompt_segment blue $CURRENT_FG '%~' | |
| } | |
| # Virtualenv: current working virtualenv | |
| prompt_virtualenv() { | |
| local virtualenv_path="$VIRTUAL_ENV" | |
| if [[ -n $virtualenv_path && -n $VIRTUAL_ENV_DISABLE_PROMPT ]]; then | |
| prompt_segment blue black "(`basename $virtualenv_path`)" | |
| fi | |
| } | |
| # Status: | |
| # - was there an error | |
| # - am I root | |
| # - are there background jobs? | |
| prompt_status() { | |
| local -a symbols | |
| [[ $RETVAL -ne 0 ]] && symbols+="%{%F{red}%}✘" | |
| [[ $UID -eq 0 ]] && symbols+="%{%F{yellow}%}⚡" | |
| [[ $(jobs -l | wc -l) -gt 0 ]] && symbols+="%{%F{cyan}%}⚙" | |
| [[ -n "$symbols" ]] && prompt_segment black default "$symbols" | |
| } | |
| #AWS Profile: | |
| # - display current AWS_PROFILE name | |
| # - displays yellow on red if profile name contains 'production' or | |
| # ends in '-prod' | |
| # - displays black on green otherwise | |
| prompt_aws() { | |
| [[ -z "$AWS_PROFILE" || "$SHOW_AWS_PROMPT" = false ]] && return | |
| case "$AWS_PROFILE" in | |
| *-prod|*production*) prompt_segment red yellow "AWS: $AWS_PROFILE" ;; | |
| *) prompt_segment green black "AWS: $AWS_PROFILE" ;; | |
| esac | |
| } | |
| ## Main prompt | |
| build_prompt() { | |
| RETVAL=$? | |
| prompt_status | |
| prompt_virtualenv | |
| prompt_aws | |
| # prompt_context | |
| prompt_dir | |
| prompt_git | |
| prompt_bzr | |
| prompt_hg | |
| prompt_end | |
| } | |
| PROMPT='%{%f%b%k%}$(build_prompt) ' |
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
| { | |
| "workbench.colorTheme": "Shades of Purple", | |
| "terminal.integrated.fontFamily": "Meslo LG M DZ for Powerline", | |
| "editor.tabSize": 2, | |
| "editor.minimap.enabled": false, | |
| "[typescriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "explorer.confirmDragAndDrop": false, | |
| "[javascript]": { | |
| "editor.defaultFormatter": "vscode.typescript-language-features" | |
| }, | |
| "[html]": { | |
| "editor.defaultFormatter": "vscode.html-language-features" | |
| }, | |
| "[css]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "editor.showFoldingControls": "always", | |
| "editor.bracketPairColorization.enabled": true, | |
| "workbench.activityBar.visible": true, | |
| "workbench.statusBar.visible": true, | |
| "debug.allowBreakpointsEverywhere": true, | |
| "debug.showBreakpointsInOverviewRuler": true, | |
| "files.associations": { | |
| "*.react": "javascript", | |
| "*.svx": "markdown", | |
| "*.svelte": "svelte", | |
| "*.graphql": "graphql" | |
| }, | |
| "[typescript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[json]": { | |
| "editor.defaultFormatter": "vscode.json-language-features" | |
| }, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "tailwindCSS.includeLanguages": { | |
| "svelte": "html" | |
| }, | |
| "workbench.sideBar.location": "right", | |
| "editor.inlineSuggest.enabled": true, | |
| "tabnine.experimentalAutoImports": true, | |
| "editor.accessibilitySupport": "off", | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "editor.suggestSelection": "first", | |
| "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
| "explorer.confirmDelete": false, | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "editor.formatOnSaveMode": "modificationsIfAvailable", | |
| "go.toolsManagement.autoUpdate": true, | |
| "window.zoomLevel": 1, | |
| "svelte.enable-ts-plugin": true | |
| } |
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
| { | |
| "workbench.colorTheme": "Shades of Purple", | |
| "terminal.integrated.fontFamily": "Meslo LG M DZ for Powerline", | |
| "editor.tabSize": 2, | |
| "editor.minimap.enabled": false, | |
| "[typescriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "explorer.confirmDragAndDrop": false, | |
| "window.zoomLevel": 2, | |
| "[javascript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[html]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "editor.showFoldingControls": "always", | |
| "workbench.activityBar.visible": true, | |
| "workbench.statusBar.visible": true, | |
| "debug.allowBreakpointsEverywhere": true, | |
| "debug.showBreakpointsInOverviewRuler": true, | |
| "files.associations": { | |
| "*.svx": "markdown", | |
| "*.graphql": "graphql" | |
| }, | |
| "[typescript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| } | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
2023 zshrc (since superceded by 2024 from scratch redo)