2025-02-01    2025-02-03    681 字  2 分钟

好嘛,让我们来试一下 Neovim ~

安装及配置

去官网 Home - Neovim 下载对应的版本,安装即可。

其配置文件夹为 C:\Users\<你的用户名>\AppData\Local\nvim\ ,入口文件为 init.lua

LazyVim

这里我们直接使用 LazyVim/LazyVim: Neovim config for the lazy ,以下为初次安装时可能遇到的一些问题。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
# required - 备份原有配置
Move-Item $env:LOCALAPPDATA\nvim $env:LOCALAPPDATA\nvim.bak

# optional but recommended - 备份原有数据
Move-Item $env:LOCALAPPDATA\nvim-data $env:LOCALAPPDATA\nvim-data.bak

# 克隆 lazyvim starter
git clone --depth=1 https://github.com/LazyVim/starter $env:LOCALAPPDATA\nvim

# 删除 .git 以方便个人托管
Remove-Item $env:LOCALAPPDATA\nvim\.git -Recurse -Force

# 启动 nvim
nvim

你可能会遇到:

No C compiler found! "cc", "gcc", "clang", "cl", "zig" are not executable.

这个错误表明 Neovim 在尝试编译某些插件时,没有找到可用的 C 编译器。许多 Neovim 插件(例如 nvim-treesitter)需要编译本地代码,因此需要安装 C 编译器。

由于我并不想在电脑上安装 Visual Stadio 这个庞然大物,这里我们使用 LLVM 的 clang

1
2
3
4
choco install clang -y

# 检查是否安装成功
clang -v

:: 这里我们使用 chocolatey 安装, 也可以去 LLVM 官网 下载。

再次运行,有出现如下问题:

Error detected while processing 
C:\Users\jack\AppData\Local\nvim\init.lua: nvim-treesitter[diff]: Error during compilation clang: warning: unable to find a Visual Studio installation; try running Clang from a developer command prompt [-Wmsvc-not-found]^M In file included from src/parser.c:1:^M src\tree_sitter/parser.h:10:10: fatal error: 'stdlib.h' file not found^M 10 | #include <stdlib.h>^M | ^~~~~~~~~~^M 1 error generated.^M

这个错误表明 nvim-treesitter 在编译时找不到 stdlib.h,通常是由于 Clang 没有正确找到 C 语言标准库

❓不是已经安装 clang 了吗

原来,在 Windows 上,Clang 依赖 Visual Studio(MSVC)或 MinGW 来提供标准库,而你的系统似乎没有正确设置。

1
2
3
4
choco instal mingw -y

# 检查是否安装成功
gcc -v

好嘛,终于可以体验 Neovim 了。

不对,还需要安装一下 fzf - A command-line fuzzy finder 命令行模糊搜索工具,如下:

1
2
3
4
5
6
choco install fzf -y
choco install ripgrep -y

# 检查是否安装成功
fzf --version
rg --version

Okay 搜索的话还需要 ripgrep 。

附录

Windows 中的 neovim 的 Mason 找不到 pyenv 安装的 python

使用 pyenv 安装的 python 指向默认是 C:\Users\jack\.pyenv\pyenv-win\shims ,这个环境变量 Mason 识别不到。我们需要把 C:\Users\jack\.pyenv\pyenv-win\versions\3.13.1\python3.exe 加入到环境变量中,即可。