Skip to content

Commit

Permalink
added bash completing installation
Browse files Browse the repository at this point in the history
  • Loading branch information
wongsitu committed Oct 12, 2023
1 parent cef2277 commit 744b99d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/installation/installfest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ This guide will help you install all the tools you need to start coding. It will
- [Windows Users](#windows-users)
- [Installing Homebrew](#installing-homebrew)
- [Installing Git](#installing-git)
- [Installing bash-completion](#installing-bash-completion)
- [Installing Node](#installing-node)
- [Installing Nvm](#installing-nvm)
- [Installing Python](#installing-python)
Expand Down Expand Up @@ -95,6 +96,27 @@ to check if it worked:
gh auth status
```

#### Installing bash-completion
bash-completion is a collection of shell functions that take advantage of the programmable completion feature of bash. It provides completions for various commands, including git, npm, and others. To install bash-completion, run the following command:

```bash
brew install bash-completion
```

To configure bash-completion, run the following command:

```bash
code ~/.bash_profile
```

And add the following lines at the end of the file and save it:

```bash
if [ -f $(brew --prefix)/etc/bash_completion ]; then
. $(brew --prefix)/etc/bash_completion
fi
```

#### Installing Node
Node.js is an open-source, cross-platform, back-end JavaScript runtime environment that runs on the V8 engine and executes JavaScript code outside a web browser. It allows developers to use JavaScript to write command-line tools and for server-side scripting—running scripts server-side to produce dynamic web page content before the page is sent to the user's web browser. To install Node, run the following command:

Expand Down

0 comments on commit 744b99d

Please sign in to comment.