当前位置: 首页 > 工具软件 > rust-analyzer > 使用案例 >

Mac上安装配置nvim + rust-analyzer + coc

越俊艾
2023-12-01

安装Neovim和插件

安装rust-analyzer

brew install rust-analyzer

安装nvim

brew install neovim

安装coc插件

mkdir -p ~/.local/share/nvim/site/pack/coc/start
cd ~/.local/share/nvim/site/pack/coc/start
git clone https://github.com/neoclide/coc.nvim.git  --depth=1
npm install

安装插件管理器

sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \\n       https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'\n

修改nvim配置文件

文件位于~/.config/nvim/init.vim
如果不存在可新建
根据博客sharksforarms 配置nvim
另一个配置也很不错
https://github.com/davidpdrsn/dotfiles/blob/master/nvim/init.vim

参考文献:

  1. 安装coc
  2. 安装rust-analyzer
  3. nvim配置
 类似资料: