+4
-13
README.md
+4
-13
README.md
···
20
21
```bash
22
# install fish config
23
-
ln -sf ./fish ~/.config/fish
24
25
# copy tmux config
26
-
ln -sf ./tmux.conf ~/.tmux.conf
27
28
# install lf config
29
-
ln -sf ./lf ~/.config/lf
30
31
# install wezterm config
32
-
ln -sf ./wezterm ~/.config/wezterm
33
# download wezterm terminfo file (see official FAQ)
34
tempfile=(mktemp) \
35
&& curl -o $tempfile https://raw.githubusercontent.com/wez/wezterm/master/termwiz/data/wezterm.terminfo \
···
67
brew tap wez/wezterm
68
brew install --cask wez/wezterm/wezterm # or wez/wezterm/wezterm-nighly
69
```
70
-
71
-
# TODO
72
-
73
-
- [ ] Create shell script to check if local config already exists
74
-
- [ ] Test this in new Mac
75
-
- [ ] Add Brewfile
76
-
- [ ] Check this tool
77
-
- [ ] [Schniz/fnm](https://github.com/Schniz/fnm)
78
-
Rust based node.js version manager
···
20
21
```bash
22
# install fish config
23
+
ln -snf ./fish ~/.config/fish
24
25
# copy tmux config
26
+
ln -snf ./tmux.conf ~/.tmux.conf
27
28
# install lf config
29
+
ln -snf ./lf ~/.config/lf
30
31
# install wezterm config
32
+
ln -snf ./wezterm ~/.config/wezterm
33
# download wezterm terminfo file (see official FAQ)
34
tempfile=(mktemp) \
35
&& curl -o $tempfile https://raw.githubusercontent.com/wez/wezterm/master/termwiz/data/wezterm.terminfo \
···
67
brew tap wez/wezterm
68
brew install --cask wez/wezterm/wezterm # or wez/wezterm/wezterm-nighly
69
```