Neovim
约 197 字小于 1 分钟
2025-10-21
Neovim 安装
详细文档请阅读Github
Win 必须以管理员权限运行
glibc
# curl 方式
curl -fsSL https://ghproxy.cn/https://raw.githubusercontent.com/jianghuaangte/Neovim/refs/heads/main/install-glibc.sh | bash
# wget 方式(可能触发反爬虫)
wget -O - https://ghproxy.cn/https://raw.githubusercontent.com/jianghuaangte/Neovim/refs/heads/main/install-glibc.sh | bash
# 仅安装配置文件
export nvim_install="no" && curl -fsSL https://ghproxy.cn/https://raw.githubusercontent.com/jianghuaangte/Neovim/refs/heads/main/install-glibc.sh | bashmusl
# curl 方式
curl -fsSL https://ghproxy.cn/https://raw.githubusercontent.com/jianghuaangte/Neovim/refs/heads/main/install-musl.sh | sh
# wget 方式(可能触发反爬虫)
wget -qO- https://ghproxy.cn/https://raw.githubusercontent.com/jianghuaangte/Neovim/refs/heads/main/install-musl-wget.sh | sh
# 仅安装配置文件
export nvim_install="no" && wget -qO- https://ghproxy.cn/https://raw.githubusercontent.com/jianghuaangte/Neovim/refs/heads/main/install-musl-wget.sh | shwin
$env:GH_PROXY = "https://ghproxy.cn/"
Set-ExecutionPolicy Bypass -Scope Process -Force; Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://ghproxy.cn/https://raw.githubusercontent.com/jianghuaangte/Neovim/refs/heads/main/install-win.ps1'))Neovim 右键编辑
- 配置 Neovim 安装脚本使用
win
$env:GH_PROXY = "https://ghproxy.cn/"
Set-ExecutionPolicy Bypass -Scope Process -Force; Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/jianghuaangte/nilesoft-shell-neovim/refs/heads/main/nilesoft-shell-neovim.ps1'))