Skip to content

Commit

Permalink
Include tool install scripts
Browse files Browse the repository at this point in the history
The primary motivation here is that the main nvm install script has no
option for skipping profile editing
(nvm-sh/nvm#2076) and I want to keep `.zshrc`
clean.
  • Loading branch information
matt-tingen committed Mar 8, 2020
1 parent daee49c commit adc1bd4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
16 changes: 12 additions & 4 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,22 @@ ln -si $config_dir/DefaultKeyBinding.dict ~/Library/KeyBindings/DefaultKeyBindin

# Tools

Install:
nvm:

- [Homebrew](https://brew.sh/)
- [nvm](https://github.com/nvm-sh/nvm#installing-and-updating)
```sh
# https://github.com/nvm-sh/nvm/blob/master/README.md#manual-install
export NVM_DIR="$HOME/.nvm" && (
git clone https://github.com/nvm-sh/nvm.git "$NVM_DIR"
cd "$NVM_DIR"
git checkout `git describe --abbrev=0 --tags --match "v[0-9]*" $(git rev-list --tags --max-count=1)`
) && \. "$NVM_DIR/nvm.sh"
```

Homebrew formulae:
Homebrew:

```sh
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"

brew install \
autojump \
ripgrep \
Expand Down
1 change: 0 additions & 1 deletion shell/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ if [ -x "$(command -v brew)" ]; then
export PATH=/usr/local/bin:$PATH
fi


# Variables
base_config=$HOME/.zshrc

Expand Down

0 comments on commit adc1bd4

Please sign in to comment.