Created
July 4, 2013 03:28
-
-
Save sioncojp/5924710 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## iTerm2にsolarizedを導入 | |
| http://ethanschoonover.com/solarizedを落として、~/以下に移動 | |
| iterm->preferences->profile->color->load profile | |
| ## vimにsolarizedを導入 | |
| $mkdir ~/.vim | |
| $git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle | |
| $vim .vimrc | |
| set nocompatible " be iMproved | |
| filetype off " required! | |
| set rtp+=~/.vim/bundle/vundle/ | |
| call vundle#rc() | |
| " let Vundle manage Vundle | |
| " required! | |
| Bundle 'gmarik/vundle' | |
| " My Bundles here: | |
| " | |
| " original repos on github | |
| Bundle 'tpope/vim-fugitive' | |
| Bundle 'Lokaltog/vim-easymotion' | |
| Bundle 'rstacruz/sparkup', {'rtp': 'vim/'} | |
| Bundle 'tpope/vim-rails.git' | |
| " vim-scripts repos | |
| Bundle 'L9' | |
| Bundle 'FuzzyFinder' | |
| " non github repos | |
| Bundle 'git://git.wincent.com/command-t.git' | |
| " git repos on your local machine (ie. when working on your own plugin) | |
| Bundle 'file:///Users/gmarik/path/to/plugin' | |
| " ... | |
| filetype plugin indent on " required! | |
| " | |
| " Brief help | |
| " :BundleList - list configured bundles | |
| " :BundleInstall(!) - install(update) bundles | |
| " :BundleSearch(!) foo - search(or refresh cache first) for foo | |
| " :BundleClean(!) - confirm(or auto-approve) removal of unused bundles | |
| " | |
| " see :h vundle for more details or wiki for FAQ | |
| " NOTE: comments after Bundle command are not allowed.. | |
| $vim | |
| :BundleInstall | |
| :q! | |
| :q! | |
| $vim .vimrc | |
| 一番最後の行に | |
| Bundle 'altercation/vim-colors-solarized' | |
| またbundle install。その後下記を追加 | |
| syntax enable | |
| set background=dark | |
| colorscheme solarized |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment