From d0ec37d119a83bfd54400063a7e650556cb11593 Mon Sep 17 00:00:00 2001
From: Kohei Watanabe <nebel@fogtype.com>
Date: Wed, 26 Mar 2025 11:16:16 +0900
Subject: [PATCH] remove zsh

---
 .zsh/functions/_git |  1 -
 .zshrc              | 19 -------------------
 2 files changed, 20 deletions(-)
 delete mode 120000 .zsh/functions/_git
 delete mode 100644 .zshrc

diff --git a/.zsh/functions/_git b/.zsh/functions/_git
deleted file mode 120000
index 4755cbb..0000000
--- a/.zsh/functions/_git
+++ /dev/null
@@ -1 +0,0 @@
-/Library/Developer/CommandLineTools/usr/share/git-core/git-completion.zsh
\ No newline at end of file
diff --git a/.zshrc b/.zshrc
deleted file mode 100644
index 19fd996..0000000
--- a/.zshrc
+++ /dev/null
@@ -1,19 +0,0 @@
-. /Library/Developer/CommandLineTools/usr/share/git-core/git-prompt.sh
-zstyle ':completion:*:*:git:*' script /Library/Developer/CommandLineTools/usr/share/git-core/git-completion.bash
-fpath=(~/.zsh/functions $fpath)
-autoload -Uz compinit && compinit
-alias ..='cd ..'
-alias cp='cp --reflink=auto'
-alias diff='diff --color=auto'
-alias grep='grep --color=auto'
-alias ll='ls -alF'
-alias ls='ls --color=auto'
-precmd() {
-  [[ "$TERM" == xterm-256color ]] && print -Pn -- '\e]2;%n@%m %~\a'
-  [[ "$_PWD" == "$PWD" ]] && return
-  _PWD="$PWD"
-  ls
-}
-setopt PROMPT_SUBST
-PROMPT='%B%F{green}%n@%m%f%b:%B%F{blue}%~%f%b $(__git_ps1 "%%F{green}(%s)%%f")
-%# '