MAC vim安装gruvbox主题
gruvbox是一款优秀的vim配色方案,但是却不是vim自带的配色方案,这里记录一下安装过程。 gruvbox官网:https://github.com/morhetz/gruvbox gruvbox安装说明:https://github.com/morhetz/gruvbox/wiki/Installation vim插件管理工具有vim-plug和vundle等,这两者任意使用一种即可。 1、使用vim-plug安装 官网:https://github.com/junegunn/vim-plug 首先安装vim-plug,安装命令: # Vim (~/.vim/ autoload) curl -fLo ~/.vim/autoload/plug.vim --create- dirs https: // raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim 然后在~/.vimrc中添加如下配置 call plug#begin() Plug ' morhetz/gruvbox ' call plug#end() colorscheme gruvbox set background =dark 然后在vim中执行:PlugInstall 安装gruvbox即可。 安装完后执行:source %生效.vimrc配置文件