Skip to content

Commit

Permalink
feat: 설치 목록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
sjoleee committed Aug 21, 2023
1 parent 2e4e4e2 commit 440061b
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 34 deletions.
45 changes: 19 additions & 26 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,22 @@
새로운 맥북을 구입한 기념으로 **개발 환경 설정을 자동으로 수행**하는 shell script를 작성하였습니다.<br>
다음과 같은 툴들을 설치합니다.

| Tool name | 비고 |
| ------------ | ------------- |
|node|@18|
|KakaoTalk||
|Slack||
|Discord||
|RunCat|CPU 사용량 등을 표시해주는 생산성 앱|
|Amphetamine|맥북 화면이 꺼지지 않게 해주는 앱|
|Monosnap|스크린 캡쳐 앱|
|Gestimer|뽀모도로 타이머(유료)|
|postman||
|sourcetree||
|google-chrome||
|iterm2||




| Tool name | 비고 |
| ------------- | ------------------------------------ |
| node | @18 |
| nvm | |
| vscode | 확장프로그램까지 포함 |
| KakaoTalk | |
| Slack | |
| Discord | |
| RunCat | CPU 사용량 등을 표시해주는 생산성 앱 |
| Amphetamine | 맥북 화면이 꺼지지 않게 해주는 앱 |
| Monosnap | 스크린 캡쳐 앱 |
| postman | |
| sourcetree | |
| google-chrome | |
| iterm2 | |
| Fig | git 명령어를 자동완성 해주는 앱 |

## setting

Expand All @@ -44,25 +42,20 @@ git clone https://github.com/sjoleee/how-i-met-my-laptop.git

🛠 이때, 권한 문제로 install.sh가 실행되지 않는다면?


1️⃣ 폴더로 진입합니다.

```
cd how-i-met-my-laptop
```

2️⃣ 실행 권한을 수정합니다.

```
chmod +x install.sh
```

3️⃣ 실행합니다.

```
./install.sh
```







7 changes: 5 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,15 @@ mas install 803453959
mas install 1429033973
mas install 937984704
mas install 540348655
mas install 990588172

brew install postman
brew install sourcetree
brew install google-chrome
brew install iterm2
brew install discord

brew install fig
brew install nvm
mkdir ~/.nvm

sudo xattr -dr com.apple.quarantine /Applications/Postman.app
open /Applications/Postman.app
Expand All @@ -38,6 +39,8 @@ sudo xattr -dr com.apple.quarantine /Applications/iTerm.app
open /Applications/iTerm.app
sudo xattr -dr com.apple.quarantine /Applications/Discord.app
open /Applications/Discord.app
sudo xattr -dr com.apple.quarantine /Applications/Fig.app
open /Applications/Fig.app

cp -a ./fonts/. ~/Library/Fonts

Expand Down
11 changes: 9 additions & 2 deletions vscode/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ sudo xattr -dr com.apple.quarantine /Applications/Visual\ Studio\ Code.app


# install vscode extensions
code --install-extension akamud.vscode-theme-onedark
code --install-extension seansassenrath.vscode-theme-superonedark
code --install-extension formulahendry.code-runner
code --install-extension vivaxy.vscode-conventional-commits
code --install-extension dbaeumer.vscode-eslint
Expand All @@ -20,6 +20,13 @@ code --install-extension bradlc.vscode-tailwindcss
code --install-extension wayou.vscode-todo-highlight
code --install-extension mattpocock.ts-error-translator
code --install-extension styled-components.vscode-styled-components

code --install-extension eamodio.gitlens
code --install-extension naumovs.color-highlight
code --install-extension ijs.emotionsnippets
code --install-extension ecmel.vscode-html-css
code --install-extension yzhang.markdown-all-in-one
code --install-extension unifiedjs.vscode-mdx
code --install-extension cipchk.cssrem
code --install-extension arcanis.vscode-zipfs

cp ./vscode/settings.json ~/Library/Application\ Support/Code/User/settings.json
7 changes: 6 additions & 1 deletion vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"workbench.colorTheme": "Atom One Dark",
"workbench.colorTheme": "Super One Dark",
"workbench.colorCustomizations": {
"statusBar.background": "#414141",
"statusBar.foreground": "#ffffff",
"editor.background": "#202020"
},
"git.autofetch": true,
"workbench.iconTheme": "material-icon-theme",
"editor.defaultFormatter": "esbenp.prettier-vscode",
Expand Down
8 changes: 5 additions & 3 deletions zsh/.zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,11 @@ prompt_context() {
}

prompt_context() {
prompt_segment black default "Sjolee 🐶 "
prompt_segment black default "Sjoleee 🐶 "
}

export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm

export NVM_DIR=~/.nvm
source $(brew —prefix nvm)/nvm.sh

0 comments on commit 440061b

Please sign in to comment.