入门指南
克隆这个(或此仓库的分叉版本)仓库。
$ cd ~
$ git clone https://github.com/rmm5t/dotfiles.git .dotfiles
(选项1) 如果你想将此仓库中的所有内容符号链接到你的主目录,运行 install.rb
。这也会同步和更新所有内部的 git 子模块。
$ cd ~/.dotfiles
$ ./install.rb
这个安装脚本是幂等的,意味着你可以反复运行它而不用担心会破坏任何东西。可以将其用作安装程序或在合并上游分叉后进行升级。
(选项2) 如果你想手动将一个或多个配置符号链接到你的主目录,你也可以这样做。如果采用这种方法,你需要手动更新所有的 git 子模块。
$ cd ~/.dotfiles
$ git submodule sync
$ git submodule update --init --recursive
$ ln -ns emacs ~/.emacs
$ ln -ns emacs.d ~/.emacs.d
(选项3) 只是四处看看,选择你喜欢的内容用于你自己的点文件。
注意事项
如果你想使用 git 和 github,请确保添加你自己的 ~/.gitconfig_local
文件:
[user]
email = email@example.com
name = 你的名字
[github]
user = 你的github用户名
要求
- *nix 环境(例如 Mac OS X 或 Linux)
- Bash 版本 >= 3(用于命令行增强)
- Emacs 版本 >= 24(用于 emacs 配置和设置)
- Ruby(使 install.rb 能够工作)