From e8ec61f0456b542c709c95e94bb0354c389069c3 Mon Sep 17 00:00:00 2001 From: Cael Date: Sat, 19 Oct 2024 20:32:22 +0800 Subject: [PATCH] feat: add homrbrew and nvm --- src/SUMMARY.md | 20 +++++++------ src/linux/vim.md | 8 +++++ src/mac/hombrew.md | 73 ++++++++++++++++++++++++++++++++++++++++++++++ src/mac/nvm.md | 23 +++++++++++++++ 4 files changed, 115 insertions(+), 9 deletions(-) create mode 100644 src/mac/hombrew.md create mode 100644 src/mac/nvm.md diff --git a/src/SUMMARY.md b/src/SUMMARY.md index 1036f43..8aabc4a 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -6,9 +6,19 @@ - [使用 Wiringpi](rpi/wiringpi.md) +- [OpenWrt]() + + - [使用 Init](openwrt/init.md) + - [使用 Vim](openwrt/vim.md) + - [使用 Uhttpd](openwrt/uhttpd.md) + - [使用 Mosquitto](openwrt/mosquitto.md) + - [其他常用命令](openwrt/others.md) + - [Mac]() - - [使用快捷键](mac/shortcuts.md) + - [使用 快捷键](mac/shortcuts.md) + - [使用 NVM](mac/nvm.md) + - [使用 Homebrew](mac/homebrew.md) - [Windows]() @@ -35,14 +45,6 @@ - [使用 Linux 用户和用户组](linux/users.md) - [其他配置及常用命令](linux/others.md) -- [OpenWrt]() - - - [使用 Init](openwrt/init.md) - - [使用 Vim](openwrt/vim.md) - - [使用 Uhttpd](openwrt/uhttpd.md) - - [使用 Mosquitto](openwrt/mosquitto.md) - - [其他常用命令](openwrt/others.md) - - [学习教程]() - [使用 Node](tutorial/node.md) diff --git a/src/linux/vim.md b/src/linux/vim.md index 359195c..bc99cc8 100644 --- a/src/linux/vim.md +++ b/src/linux/vim.md @@ -8,6 +8,14 @@ sudo apt-get install vim -y ## 二、配置 Vim +> 注意 💥 +> +> 你可以在打开vim 编辑器之后,输入下面的命令查看支持的配置文件位置: +> +> ```sh +> :version +> ``` + 进入 vim 配置文件: ```sh diff --git a/src/mac/hombrew.md b/src/mac/hombrew.md new file mode 100644 index 0000000..a5181c6 --- /dev/null +++ b/src/mac/hombrew.md @@ -0,0 +1,73 @@ +# 使用 Homebrew + +[Homebrew](https://brew.sh) 是 macOS 上的软件包管理器,可以帮助你安装和管理软件包。它是一个非常强大的工具,可以帮助你快速安装软件包,而不需要手动下载和安装。 + +## 一、安装 xcode-select + +在安装 Homebrew 之前,你需要安装 `xcode-select`,它是 macOS 上的一个命令行工具,可以帮助你安装开发工具,如git、make、gcc等。 + +```sh +xcode-select --install +``` + +## 二、安装 Homebrew + +安装 Homebrew 非常简单,只需要在终端中运行以下命令即可: + +```sh +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" +``` + +## 三、配置 Homebrew + +安装完成后,你需要配置 Homebrew,以便它可以正常工作。首先,你需要将 Homebrew 的路径添加到你的 `PATH` 环境变量中,正常情况下,如果你是使用 `zsh`,那么你可以将以下命令添加到你的 `~/.zshrc` 文件中: + +```bash +eval "$(/opt/homebrew/bin/brew shellenv)" +``` + +## 四、使用 Homebrew + +检查 Homebrew 是否安装成功: + +```sh +brew --version +``` + +检查系统是否正常: + +```sh +brew doctor +``` + +更新 Homebrew: + +```sh +brew update +``` + +升级 Homebrew: + +```sh +brew upgrade +``` + +## 五、常用命令 + +**nvm**: + +```sh +brew install nvm +``` + +**htop**: + +```sh +brew install htop +``` + +**wget**: + +```sh +brew install wget +``` diff --git a/src/mac/nvm.md b/src/mac/nvm.md new file mode 100644 index 0000000..94aa14d --- /dev/null +++ b/src/mac/nvm.md @@ -0,0 +1,23 @@ +# 使用 NVM + +## 一、安装 NVM + +使用 homebrew 安装 nvm: + +```sh +brew install nvm +``` + +## 二、配置 NVM + +在 `~/.zshrc` 或 `~/.bashrc` 中添加以下内容: + +```sh +export NVM_DIR="$HOME/.nvm" +[ -s "/opt/homebrew/opt/nvm/nvm.sh" ] && \. "/opt/homebrew/opt/nvm/nvm.sh" # This loads nvm +[ -s "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" ] && \. "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" # This loads nvm bash_completion +``` + +## 三、使用 NVM + +关于如何使用 nvm,请参考 [Windows/使用 NVM](../windows/nvm.md)。