配置mac工作环境
时间:2015-11-17 00:07:30
收藏:0
阅读:1406
1. 安装brew
作用:为了方便在终端上安装软件。
安装命令:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
注意:可能会出现 curl: (35) Server aborted the SSL handshake,而安装失败,重试几次解决该问题。
使用方法:
brew search/install/uninstall/upgrade
2. 安装iterm2
安装方法: brew install Caskroom/cask/iterm2
3. 使用vundle来管理vim插件
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
然后根据目录下的README.md来安装vundle和插件。
例如:
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin ‘gmarik/Vundle.vim‘
Plugin ‘Valloric/YouCompleteMe‘
Plugin ‘Chiel92/vim-autoformat‘
call vundle#end()
4.
评论(0)