码迷,mamicode.com
首页 > 系统相关 > 详细

配置mac工作环境

时间:2015-11-17 00:07:30      阅读:1406      评论:0      收藏:0      [点我收藏+]

标签:

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. 

配置mac工作环境

标签:

原文地址:http://www.cnblogs.com/jawfeng/p/4970326.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!