Skip to content

Commit eb49ff9

Browse files
committed
fix: renamed SPA dir to web
1 parent bf702d0 commit eb49ff9

File tree

6 files changed

+22
-78
lines changed

6 files changed

+22
-78
lines changed

docs/apps/ghostty.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Fonts should be installed as described in [Essentials](../essentials/essentials.
1818

1919
```shell
2020
# if you haven't already installed ghostty, run:
21-
brew install --cask ghostty
21+
brew install --cask --appdir=~/Applications ghostty
2222
```
2323

2424
## Configuration

docs/essentials/brew.md

Lines changed: 11 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -12,79 +12,23 @@ sudo xcode-select --install
1212

1313
## Install
1414

15-
Go to terminal and run:
15+
The ~/.zshrc doesn’t exist by default in macOS, so you need to create it.
16+
17+
Go to *Terminal* and run:
1618

1719
```shell
18-
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"`
20+
touch ~/.zshrc
1921
```
2022

21-
Output should look like this:
22-
23-
```log
24-
% /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
25-
==> Checking for `sudo` access (which may request your password)...
26-
Password:
27-
==> This script will install:
28-
/opt/homebrew/bin/brew
29-
/opt/homebrew/share/doc/homebrew
30-
/opt/homebrew/share/man/man1/brew.1
31-
/opt/homebrew/share/zsh/site-functions/_brew
32-
/opt/homebrew/etc/bash_completion.d/brew
33-
/opt/homebrew
34-
==> The following new directories will be created:
35-
/opt/homebrew/bin
36-
/opt/homebrew/etc
37-
/opt/homebrew/include
38-
/opt/homebrew/lib
39-
/opt/homebrew/sbin
40-
/opt/homebrew/share
41-
/opt/homebrew/var
42-
/opt/homebrew/opt
43-
/opt/homebrew/share/zsh
44-
/opt/homebrew/share/zsh/site-functions
45-
/opt/homebrew/var/homebrew
46-
/opt/homebrew/var/homebrew/linked
47-
/opt/homebrew/Cellar
48-
/opt/homebrew/Caskroom
49-
/opt/homebrew/Frameworks
50-
==> The Xcode Command Line Tools will be installed.
51-
52-
HEAD is now at 6661f5b14 Merge pull request #12904 from Homebrew/dependabot/bundler/Library/Homebrew/json_schemer-0.2.19
53-
==> Tapping homebrew/core
54-
remote: Enumerating objects: 1146232, done.
55-
remote: Counting objects: 100% (63/63), done.
56-
remote: Compressing objects: 100% (39/39), done.
57-
remote: Total 1146232 (delta 38), reused 47 (delta 24), pack-reused 1146169
58-
Receiving objects: 100% (1146232/1146232), 456.18 MiB | 10.26 MiB/s, done.
59-
Resolving deltas: 100% (792672/792672), done.
60-
From https://github.com/Homebrew/homebrew-core
61-
* [new branch] master -> origin/master
62-
HEAD is now at 383269fb392 checkov: update 2.0.885 bottle.
63-
Warning: /opt/homebrew/bin is not in your PATH.
64-
Instructions on how to configure your shell for Homebrew
65-
can be found in the 'Next steps' section below.
66-
==> Installation successful!
67-
68-
==> Homebrew has enabled anonymous aggregate formulae and cask analytics.
69-
Read the analytics documentation (and how to opt-out) here:
70-
https://docs.brew.sh/Analytics
71-
No analytics data has been sent yet (nor will any be during this install run).
72-
73-
==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
74-
https://github.com/Homebrew/brew#donations
75-
76-
==> Next steps:
77-
- Run these two commands in your terminal to add Homebrew to your PATH:
78-
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zprofile
79-
eval "$(/opt/homebrew/bin/brew shellenv)"
80-
- Run brew help to get started
81-
- Further documentation:
82-
https://docs.brew.sh
23+
Not install brew from *Terminal*
24+
25+
```shell
26+
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
8327
```
8428

8529
For first time only, run following commands
8630

87-
> _This will create `~/.zprofile` file if it not exists or append `eval "$(/opt/homebrew/bin/brew shellenv)"` line to existing `~/.zprofile` file_
31+
> *This will create `~/.zprofile` file if it not exists or append `eval "$(/opt/homebrew/bin/brew shellenv)"` line to existing `~/.zprofile` file*
8832
8933
```shell
9034
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zprofile
@@ -99,15 +43,15 @@ brew doctor
9943

10044
If you get `Your system is ready to brew.`, you can move on to the next step.
10145

102-
Brew anonymously collect _User Behaviour_ data. To prevent analytics from ever being sent, run:
46+
Brew anonymously collect *User Behaviour* data. To prevent analytics from ever being sent, run:
10347

10448
```shell
10549
brew analytics off
10650
```
10751

10852
### Homebrew Shell Completion
10953

110-
Brew installs _completions_ and _functions_ into: `/opt/homebrew/share/zsh/site-functions` when a formula offers them.
54+
Brew installs *completions* and *functions* into: `/opt/homebrew/share/zsh/site-functions` when a formula offers them.
11155

11256
[Shell completions](https://docs.brew.sh/Shell-Completion) for external Homebrew commands are not automatically installed. To opt-in to using completions for external commands (if provided), they need to be linked to `HOMEBREW_PREFIX` by running `brew completions link`.
11357

docs/essentials/essentials.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ brew install gh # GitHub official command line tool.
3939
# Better CLI alternative Tools
4040
brew install ack
4141
brew install tree
42-
brew install subversion # Yes, it is required to install some brew formulas :(
4342
brew install eza # replacement for LS. https://eza.rocks/
4443
brew install bat # a better `cat`
4544
brew install git-delta # a better git `diff`
@@ -54,7 +53,7 @@ brew install cocogitto # monorepo version/release management
5453

5554
### Fonts
5655

57-
We need developer friendly fonts for **Terminals** (_iterm2, 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.
5857
You can explore various fonts for IDEs at [Programming Fonts](https://www.programmingfonts.org) website.
5958

6059
We recommend:
@@ -89,13 +88,13 @@ Since many of us won't have _admin_ rights on **Company** issued MacBooks, we wi
8988
9089
#### Development Tools
9190

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

9896
```shell
97+
brew install --cask --appdir=~/Applications ghostty
9998
brew install --cask --appdir=~/Applications sublime-text
10099
brew install --cask --appdir=~/Applications visual-studio-code
101100
brew install --cask --appdir=~/Applications jetbrains-toolbox
@@ -135,14 +134,14 @@ brew install --cask --appdir=~/Applications alfred
135134

136135
```shell
137136
brew install --cask --appdir=~/Applications google-chrome
138-
brew install --cask --appdir=~/Applications microsoft-remote-desktop
139-
brew install --cask --appdir=~/Applications obs
140137
# Logitech Options software - will prompt for password.
141138
brew tap "homebrew/cask-drivers"
142139
brew install --cask --appdir=~/Applications logitech-options
143140
# Remote communication (optional)
144141
brew install --cask --appdir=~/Applications zoom
145142
brew install --cask --appdir=~/Applications slack
143+
brew install --cask --appdir=~/Applications discord
144+
brew install --cask --appdir=~/Applications obs
146145
```
147146

148147
Customize above applications further from: [Apps](../apps) docs

docs/essentials/xcode.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ mkdir ~/Applications
8686
mkdir -p ~/Developer/Apps
8787

8888
mkdir -p ~/Developer/Work
89-
# Make `SPA`, `go`, `java` etc directories under ~/Developer/Work:
89+
# Make `web`, `go`, `java` etc directories under ~/Developer/Work:
9090
mkdir -p ~/Developer/Work/tools
9191
mkdir -p ~/Developer/Work/node
92-
mkdir -p ~/Developer/Work/SPA
92+
mkdir -p ~/Developer/Work/web
9393
mkdir -p ~/Developer/Work/go
9494
mkdir -p ~/Developer/Work/rust
9595
mkdir -p ~/Developer/Work/java

docs/platforms/node/pnpm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export PATH=$PNPM_HOME:$PATH
3434
3535
```shell
3636
# for example to pin pnpm version for spectacular
37-
cd ~/Developer/Work/SPA/spectacular
37+
cd ~/Developer/Work/web/spectacular
3838
corepack use pnpm@latest-10
3939
```
4040

dotfiles/my/aliases.zsh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ alias bb="kubectl run busybox --image=busybox:1.36.1 --rm -it --restart=Never --
4747
alias go.work='cd ~/Developer/Work'
4848
alias go.go='cd ~/Developer/Work/go'
4949
alias go.rust='cd ~/Developer/Work/rust'
50-
alias go.spa='cd ~/Developer/Work/SPA'
50+
alias go.node='cd ~/Developer/Work/node'
51+
alias go.web='cd ~/Developer/Work/web'
5152
alias go.java='cd ~/Developer/Work/java'
5253
alias go.tools='cd ~/Developer/Work/tools'
5354
alias go.python='cd ~/Developer/Work/python'

0 commit comments

Comments
 (0)