this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: remove `-h` flag from README

+4 -11
+4 -11
README.md
··· 19 19 3. Create symlinks in the $HOME directory to the real files in the repo 20 20 21 21 ```bash 22 - # install neovim config 23 - ln -shf ./nvim ~/.config/nvim 24 - 25 22 # install fish config 26 - ln -shf ./fish ~/.config/fish 23 + ln -sf ./fish ~/.config/fish 27 24 28 25 # copy tmux config 29 - ln -shf ./tmux.conf ~/.tmux.conf 26 + ln -sf ./tmux.conf ~/.tmux.conf 30 27 31 28 # install lf config 32 - ln -shf ./lf ~/.config/lf 29 + ln -sf ./lf ~/.config/lf 33 30 34 31 # install wezterm config 35 - ln -shf ./wezterm ~/.config/wezterm 32 + ln -sf ./wezterm ~/.config/wezterm 36 33 # download wezterm terminfo file (see official FAQ) 37 34 tempfile=(mktemp) \ 38 35 && curl -o $tempfile https://raw.githubusercontent.com/wez/wezterm/master/termwiz/data/wezterm.terminfo \ 39 36 && tic -x -o ~/.terminfo $tempfile \ 40 37 && rm $tempfile 41 38 ``` 42 - 43 - > NOTE: 44 - > `ln -shf` is OSX specific command. 45 - > `ln -sf` is fine for Linux. 46 39 47 40 ### install fish 48 41