自用 vim 配置, 主要用于 Erlang 开发
本 vim 配置, 使用 Vundle 进行插件管理
- 安装 vim-plug
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
- 配置 vimrc 文件
curl -L -o ~/.vimrc https://raw.githubusercontent.com/HJianBo/vimrc/master/vimrc
- 安装已配置的插件
# 在 vim 命令行中输入
:PlugIntall
- 安装 nodejs 以完成对 coc.nvim 的配置
sudo su
curl -sL install-node.vercel.app/lts | bash
或者使用 nvm: https://github.com/nvm-sh/nvm
- 安装 Copilot.nvim (需求 vim9)
https://github.com/github/copilot.vim#getting-started
Ubuntu 安装 vim9 参考:https://itsfoss.com/install-latest-vim-ubuntu/
打开 vim 执行,Copilot setup
- 完成