2023年07月07日星期五多云北京市北京师范大学,
完成了自动化配置Vim和NeoVim的脚本,原本是想尝试一下LazyVim的,但是发现有时候功能太多了就失去了Vim的简洁,于是决定自动化我个人的配置后,放在Gitlab上,方便今后配置系统。
配置Vim
配置Vim1 2 3 4
| git clone https://gitlab.com/fengzhenhua/vimconfig.git ~/vimconfig cd ~/vimconfig chmod +x ./InstallVim.sh ./InstallVim.sh
|
配置NeoVim
配置NeoVim1 2 3 4
| git clone https://gitlab.com/fengzhenhua/neovimconfig.git ~/neovimconfig cd ~/neovimconfig chmod +x ./InstallNeovim.sh ./InstallNeovim.sh
|
配置Mac OS White Sur 主题
配置MacOSWhiteSur主题1 2 3 4
| git clone https://gitlab.com/fengzhenhua/MacOSWhiteSur.git ~/MacOSWhiteSur cd ~/MacOSWhiteSur chmod +x ./macoswhitesur.sh ./macoswhitesur.sh
|
由于在安装插件的时候默认使用 https://github.com
,但是有时候这不能正常访问,于是修改为 git@github.com:
后问题得到解决,这样也可以保证插件是最新的。