From 1730c0c937db41e972212f9afd542f59b34c3d90 Mon Sep 17 00:00:00 2001 From: Yoowatney Date: Fri, 13 Feb 2026 13:04:18 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=EB=AF=B8=EC=82=AC=EC=9A=A9=20?= =?UTF-8?q?=ED=8C=A8=ED=82=A4=EC=A7=80=20=EB=B0=8F=20=EC=A3=BD=EC=9D=80=20?= =?UTF-8?q?=EC=BD=94=EB=93=9C=20=EC=A0=95=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Brewfile: ccls, groonga, nvm(mise로 대체), 중복 rectangle 제거 - zshrc: TERM 설정 충돌 해소(screen-256color 제거), MANPATH 주석 제거, 미사용 lleak() 함수 제거 Co-Authored-By: Claude Opus 4.6 --- Brewfile | 4 ---- shell/zsh/zshrc | 7 ------- 2 files changed, 11 deletions(-) diff --git a/Brewfile b/Brewfile index cdbc67f..065c3a0 100644 --- a/Brewfile +++ b/Brewfile @@ -24,7 +24,6 @@ brew "tree-sitter" brew "emacs" brew "cask" brew "llvm" -brew "ccls" brew "direnv" brew "folly" brew "fizz" @@ -41,7 +40,6 @@ brew "git-lfs" brew "gitleaks" brew "glow" brew "gnupg" -brew "groonga" brew "guile" brew "httpie" brew "jq" @@ -57,7 +55,6 @@ brew "mongosh" brew "neovim" brew "nmap" # node는 mise로 관리 -brew "nvm" brew "openjdk@17" brew "pass" brew "pngpaste" @@ -97,7 +94,6 @@ cask "notion" cask "obsidian" cask "todoist-app" cask "karabiner-elements" -cask "rectangle" cask "bitwarden" cask "clipy" cask "gureumkim" diff --git a/shell/zsh/zshrc b/shell/zsh/zshrc index a9957e0..682fe04 100644 --- a/shell/zsh/zshrc +++ b/shell/zsh/zshrc @@ -40,10 +40,8 @@ source $ZSH/oh-my-zsh.sh # ============================================ export LANG=en_US.UTF-8 export EDITOR=/opt/homebrew/bin/nvim -export TERM=screen-256color export FZF_DEFAULT_OPTS="--extended" export NVM_DIR="$HOME/.nvm" -# export MANPATH="`manpath`:/opt/homebrew/opt/readline/share/man:/opt/homebrew/opt/tmux/share/man:/opt/homebrew/opt/pass/share/man" # ============================================ # 4. PATH 설정 @@ -107,11 +105,6 @@ watch() { while true; do clear; date; sleep 1; done } - -lleak() { - while true; do leaks $1; sleep 1; clear; done -} # currently not use - memcheck() { local RED='\033[0;31m' local YELLOW='\033[0;33m'