-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparams.json
7 lines (7 loc) · 3.48 KB
/
params.json
1
2
3
4
5
6
7
{
"name": "Dot RC",
"tagline": "Qinxij's dot rc for OS X or Ubuntu.",
"body": "# Configuration of OS X/Ubuntu\r\n---\r\n\r\n\r\n## What's in\r\nThis is a repository contains some configuration files for OS X/Ubuntu.\r\n\r\nInclude:\r\n \r\n * .pip/pip.config\r\n * .gitconfig\r\n * .tmux.conf\r\n * .vimperatorrc\r\n * .zshrc\r\n * kde_global_keyboard_shortcuts.kksrc\r\n \r\n etc.\r\n\r\n\r\n## homebrew\r\n * Install `homebrew`, see [homebrew](http://brew.sh/).\r\n\r\n\t```\r\n\truby -e \"$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)\"\t\r\n\t```\r\n\r\n## Ruby\r\n\r\n * Install `rvm`, see [rvm website](http://www.rvm.io/).\r\n\r\n\t```\r\n\tcurl -L https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer | bash -s stable --autolibs=enabled \r\n\t```\r\n\tor\r\n\t\r\n\t```\r\n\tcurl -sSL https://get.rvm.io | bash -s stable\r\n\t```\r\n\r\n * Replace `gem sources`\r\n\r\n\t```\r\n\t# replace the gem sources\r\n\tgem sources -r https://rubygems.org/\r\n\t\r\n\tgem sources -a http://ruby.taobao.org/\r\n\t\r\n\t# gem sources -l 用来查看source list\r\n\t```\r\n\r\n * Install `bundler`, see [bundler](http://bundler.io/)\r\n\r\n ```\r\n gem install bundler\r\n ```\r\n\r\n * Install `ruby`\r\n\r\n ```\r\n rvm install 2.0\r\n ```\r\n\r\n * Install `rails`\r\n\r\n ```\r\n [sudo] gem install rails\r\n ```\r\n\r\n\r\n## oh-my-zsh\r\n\r\n * Install `oh-my-zsh` - see [oh-my-zsh](https://github.com/robbyrussell/oh-my-zsh)\r\n\r\n ```\r\n curl -L http://install.ohmyz.sh | sh\r\n ```\r\n \r\n * Install `fzf` - see [fzf](https://github.com/junegunn/fzf).\r\n\r\n\t```\r\n\tgit clone https://github.com/junegunn/fzf.git ~/.fzf\r\n\t~/.fzf/install\r\n\t```\r\n\t\r\n * Install `autojump` or `j` - see [autojump](https://github.com/joelthelion/autojump)\r\n \r\n OS X:\r\n \r\n ```\r\n brew install autojump\r\n ```\r\n \r\n Ubuntu:\r\n \r\n ```\r\n sudo apt-get install autojump\r\n ```\r\n\r\n## Python\r\n\r\n * Install pip. See [pip](https://pypi.python.org/pypi/pip/) and [pip installing](https://pip.pypa.io/en/latest/installing.html).\r\n\r\n\t```\r\n\tcurl https://bootstrap.pypa.io/get-pip.py | python\r\n\t```\r\n\r\n * pip sources.\r\n\r\n\t- See [使用国内镜像源来加速python pypi包的安装](http://topmanopensource.iteye.com/blog/2004853)\r\n\r\n\t- See evernote (使用国内镜像源来加速python pypi包的安装).\r\n\t\r\n In file `~/.pip/pip.conf`:\r\n\r\n ```\r\n [global]\r\n\r\n index-url = http://pypi.douban.com/simple\r\n ```\r\n\r\n * Install `virtualenvwrapper`. See [virtualenvwrapper](https://bitbucket.org/dhellmann/virtualenvwrapper/overview) on Bitbucket.\r\n\r\n ```\r\n pip install virtualenvwrapper\r\n ```\r\n\r\n * Install `IPython` and `IPython nodebook`\r\n see [Here](http://ipython.org/install.html)\r\n\r\n ```\r\n pip install pyzmq jinja2 tornado ipython\r\n ```\r\n\r\n## NodeJS\r\n\r\n * Install `nvm`, see [github/nvm](https://github.com/creationix/nvm).\r\n \r\n ```\r\n curl https://raw.githubusercontent.com/creationix/nvm/v0.8.0/\r\n install.sh | sh\r\n ```\r\n\r\n * Install `node`, see [node](http://www.nodejs.org/)\r\n\r\n ```\r\n nvm install 0.11.13\r\n nvm alias default 0.11.13\r\n nvm use 0.11.13\r\n ```\r\n\r\n## Usage\r\n\r\n * Just Run:\r\n\r\n ```\r\n ./generate_links.sh\r\n ```\r\n",
"google": "",
"note": "Don't delete this file! It's used internally to help with page regeneration."
}