Skip to content

Commit 3fa1885

Browse files
committed
docs: add orbstack and webstorm
1 parent ab3c19b commit 3fa1885

File tree

2 files changed

+31
-31
lines changed

2 files changed

+31
-31
lines changed

docs/essentials/essentials.md

Lines changed: 30 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,24 @@ We will install other missing essential tools used frequently by _Developers_.
99

1010
Install [essential](https://www.youtube.com/watch?v=rWMQ-g2QDsI) _command-line tools_
1111

12-
* [watch](https://cli.github.com/)`watch` will run a command repeatedly and then display the output in an `ncurses` friendly manner.
13-
* [jq](https://stedolan.github.io/jq/) `jq` is like `sed` for JSON data
14-
* [git](https://git-scm.com/)`git` is a version control system CLI
15-
* [cocogitto](https://github.com/cocogitto/cocogitto)
12+
- [watch](https://cli.github.com/)`watch` will run a command repeatedly and then display the output in an `ncurses` friendly manner.
13+
- [jq](https://stedolan.github.io/jq/)`jq` is like `sed` for JSON data
14+
- [git](https://git-scm.com/)`git` is a version control system CLI
15+
- [cocogitto](https://github.com/cocogitto/cocogitto)
1616

1717
#### Better CLI Alternative Tools
1818

19-
* [gh](https://cli.github.com/) `GitHub CLI` brings GitHub to your terminal.
20-
* [bat](https://github.com/sharkdp/bat) — A syntax highlighting clone of `cat` and can stand in for `less`
21-
* [delta](https://github.com/dandavison/delta) — A syntax highlighting pager for `diff`-ing
22-
* [fd](https://github.com/sharkdp/fd) — A user-friendly version of `find`
23-
* [htop](https://htop.dev/) — An interactive replacement for `top`
24-
* [procs](https://github.com/dalance/procs) — A modern replacement for `ps`
25-
* [eza](https://eza.rocks/) — A modern replacement for `ls`
26-
* [ripgrep](https://github.com/BurntSushi/ripgrep) — An improved `grep`
27-
* [dust](https://github.com/bootandy/dust) — A more intuitive version of `du`
28-
* [duf](https://github.com/muesli/duf) — A better `df` alternative
29-
* [prettyping](https://github.com/denilsonsa/prettyping) —A pretty wrapper around `ping`
19+
- [gh](https://cli.github.com/)`GitHub CLI` brings GitHub to your terminal.
20+
- [bat](https://github.com/sharkdp/bat) — A syntax highlighting clone of `cat` and can stand in for `less`
21+
- [delta](https://github.com/dandavison/delta) — A syntax highlighting pager for `diff`-ing
22+
- [fd](https://github.com/sharkdp/fd) — A user-friendly version of `find`
23+
- [htop](https://htop.dev/) — An interactive replacement for `top`
24+
- [procs](https://github.com/dalance/procs) — A modern replacement for `ps`
25+
- [eza](https://eza.rocks/) — A modern replacement for `ls`
26+
- [ripgrep](https://github.com/BurntSushi/ripgrep) — An improved `grep`
27+
- [dust](https://github.com/bootandy/dust) — A more intuitive version of `du`
28+
- [duf](https://github.com/muesli/duf) — A better `df` alternative
29+
- [prettyping](https://github.com/denilsonsa/prettyping) —A pretty wrapper around `ping`
3030

3131
```shell
3232
brew install watch
@@ -48,18 +48,18 @@ brew install dust # a better `du`
4848
brew install ripgrep # a better `grep` use: rg
4949
brew install htop # a better `top`
5050
brew install httpie # a better `curl`
51-
brew install cocogitto # monorepo version/release management
51+
brew install cocogitto # monorepo version/release management
5252
```
5353

5454
### Fonts
5555

56-
We need developer friendly fonts for **Terminals** (_ghostty, macOS Terminal app_) and **Editors** (_IntelliJ, VSCode, sublime-text_) to enhance visual experience.
56+
We need developer friendly fonts for **Terminals** (_ghostty, macOS Terminal app_) and **Editors** (_IntelliJ, VSCode, sublime-text_) to enhance visual experience.
5757
You can explore various fonts for IDEs at [Programming Fonts](https://www.programmingfonts.org) website.
5858

5959
We recommend:
6060

61-
* **Editor Font:** _Source Code Pro, Fira Code or [Jetbrains Mono](https://www.jetbrains.com/lp/mono/)_
62-
* **Terminal Font:** _Meslo LG, FiraCode Nerd Font or Hack Nerd Font_ from [nerd-fonts](https://www.nerdfonts.com/font-downloads)
61+
- **Editor Font:** _Source Code Pro, Fira Code or [Jetbrains Mono](https://www.jetbrains.com/lp/mono/)_
62+
- **Terminal Font:** _Meslo LG, FiraCode Nerd Font or Hack Nerd Font_ from [nerd-fonts](https://www.nerdfonts.com/font-downloads)
6363

6464
```shell
6565
# Terminal Fonts
@@ -88,16 +88,17 @@ Since many of us won't have _admin_ rights on **Company** issued MacBooks, we wi
8888
8989
#### Development Tools
9090

91-
* [ghostty](https://ghostty.org): macOS Terminal Replacement
92-
* [Sublimetext](https://www.sublimetext.com): lightweight text/markdown editor
93-
* [VSCode](https://code.visualstudio.com): lightweight code editor
94-
* [Jetbrains](https://www.jetbrains.com/toolbox-app/): toolbox to install jetbrains IDEs
91+
- [ghostty](https://ghostty.org): macOS Terminal Replacement
92+
- [Sublimetext](https://www.sublimetext.com): lightweight text/markdown editor
93+
- [VSCode](https://code.visualstudio.com): lightweight code editor
94+
- [Jetbrains](https://www.jetbrains.com/toolbox-app/): toolbox to install jetbrains IDEs
9595

9696
```shell
9797
brew install --cask --appdir=~/Applications ghostty
9898
brew install --cask --appdir=~/Applications sublime-text
9999
brew install --cask --appdir=~/Applications visual-studio-code
100100
brew install --cask --appdir=~/Applications webstorm
101+
brew install --cask orbstack # orbstack need to be in system apps
101102
# optional
102103
brew install --cask --appdir=~/Applications windsurf # VSCode alternative
103104
brew install --cask --appdir=~/Applications marta
@@ -117,20 +118,20 @@ subl ~/Developer/Work/tools/macbooksetup
117118

118119
#### Productivity
119120

120-
* [Alfred](https://www.alfredapp.com): Spotlight on steroids.
121+
- [Alfred](https://www.alfredapp.com): Spotlight on steroids.
121122

122123
```shell
123124
brew install --cask --appdir=~/Applications alfred
124125
```
125126

126127
#### Other
127128

128-
* Google Chrome
129+
- Google Chrome
129130

130-
* Microsoft Remote Desktop: rdp (optional)
131-
* [OBS](https://obsproject.com): Record your screen with audio, mouse highlight and other features. (optional)
132-
* [logitech-options](https://www.logitech.com/en-us/software/options.html): logitech driver, install only if you have _MX mouse_ (optional)
133-
* [slack](https://slack.com/): app for communication (optional)
131+
- Microsoft Remote Desktop: rdp (optional)
132+
- [OBS](https://obsproject.com): Record your screen with audio, mouse highlight and other features. (optional)
133+
- [logitech-options](https://www.logitech.com/en-us/software/options.html): logitech driver, install only if you have _MX mouse_ (optional)
134+
- [slack](https://slack.com/): app for communication (optional)
134135

135136
```shell
136137
brew install --cask --appdir=~/Applications google-chrome

docs/platforms/node/bun.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
## Install
66

77
```shell
8-
brew tap oven-sh/bun # for macOS and Linux
9-
brew install bun
8+
brew install oven-sh/bun/bun
109
# Upgrading bun itself
1110
bun upgrade
1211
```

0 commit comments

Comments
 (0)