···671. Install Apple's Command Line Tools, which are prerequisites for Git and Homebrew
89- ```bash
10- xcode-select --install
11- ```
12132. Clone repo into new hidden directory
1415- ```bash
16- git clone https://github.com/boltlessengineer/dotfiles ~/.dotfiles
17- ```
18193. Create symlinks in the $HOME directory to the real files in the repo
2021- ```bash
22- # install neovim config
23- ln -shf ./nvim ~/.config/nvim
2425- # install fish config
26- ln -shf ./fish ~/.config/fish
2728- # install lf config
29- ln -shf ./lf ~/.config/lf
3031- # install wezterm config
32- ln -shf ./wezterm ~/.config/wezterm
33- ```
00003435- > NOTE:
36- > `ln -shf` is OSX specific command.
37- > `ln -sf` is fine for Linux.
3839### install fish
40
···671. Install Apple's Command Line Tools, which are prerequisites for Git and Homebrew
89+```bash
10+xcode-select --install
11+```
12132. Clone repo into new hidden directory
1415+```bash
16+git clone https://github.com/boltlessengineer/dotfiles ~/.dotfiles
17+```
18193. Create symlinks in the $HOME directory to the real files in the repo
2021+```bash
22+# install neovim config
23+ln -shf ./nvim ~/.config/nvim
2425+# install fish config
26+ln -shf ./fish ~/.config/fish
2728+# install lf config
29+ln -shf ./lf ~/.config/lf
3031+# install wezterm config
32+ln -shf ./wezterm ~/.config/wezterm
33+tempfile=(mktemp) \
34+ && curl -o $tempfile https://raw.githubusercontent.com/wez/wezterm/master/termwiz/data/wezterm.terminfo \
35+ && tic -x -o ~/.terminfo $tempfile \
36+ && rm $tempfile
37+```
3839+> NOTE:
40+> `ln -shf` is OSX specific command.
41+> `ln -sf` is fine for Linux.
4243### install fish
44
+5
fish/config.fish
···1516 set -gx EDITOR nvim
170000018 ## Go
19 set -gx GOROOT "$(brew --prefix golang)/libexec"
20 set -gx GOPATH $HOME/go
···1516 set -gx EDITOR nvim
1718+ # set $TERM as wezterm to support undercurl in neovim (see wezterm#2505)
19+ if test "$TERM_PROGRAM" = "WezTerm"
20+ set -gx TERM wezterm
21+ end
22+23 ## Go
24 set -gx GOROOT "$(brew --prefix golang)/libexec"
25 set -gx GOPATH $HOME/go