好嘛,让我们来试一下 Neovim ~
安装及配置
去官网 Home - Neovim 下载对应的版本,安装即可。
其配置文件夹为 C:\Users\<你的用户名>\AppData\Local\nvim\
,入口文件为 init.lua
。
LazyVim
这里我们直接使用 LazyVim/LazyVim: Neovim config for the lazy ,以下为初次安装时可能遇到的一些问题。
|
|
你可能会遇到:
No C compiler found! "cc", "gcc", "clang", "cl", "zig" are not executable.
这个错误表明 Neovim 在尝试编译某些插件时,没有找到可用的 C 编译器。许多 Neovim 插件(例如 nvim-treesitter
)需要编译本地代码,因此需要安装 C 编译器。
由于我并不想在电脑上安装 Visual Stadio 这个庞然大物,这里我们使用 LLVM 的 clang
。
|
|
:: 这里我们使用 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 来提供标准库,而你的系统似乎没有正确设置。
|
|
好嘛,终于可以体验 Neovim 了。
不对,还需要安装一下 fzf
- A command-line fuzzy finder 命令行模糊搜索工具,如下:
|
|
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
加入到环境变量中,即可。