diff options
author | David Runge <dave@sleepmap.de> | 2016-05-08 18:42:05 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2016-05-08 18:42:05 +0200 |
commit | 02c492176aa1f16a838f60f48349cacb6d3bea91 (patch) | |
tree | 625aa722555f880025905b73de54d21df513d696 | |
parent | 9cfb64c997b8e5f095c75f39641762f44d3307c2 (diff) | |
download | dotfiles-02c492176aa1f16a838f60f48349cacb6d3bea91.tar.gz dotfiles-02c492176aa1f16a838f60f48349cacb6d3bea91.tar.bz2 dotfiles-02c492176aa1f16a838f60f48349cacb6d3bea91.tar.xz dotfiles-02c492176aa1f16a838f60f48349cacb6d3bea91.zip |
README.rst: Adding README.rst for installation and requirements.
-rw-r--r-- | README.rst | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..ff5de0f --- /dev/null +++ b/README.rst @@ -0,0 +1,65 @@ +dotfiles +======== + +| dotfiles is a repository, that should go into the user's $HOME. +| It features configurations for zsh and many others. + +Requirements +------------ +Some requirements have to be met to make things work smoothly. +As I'm using |arch_linux|, all links are Arch specific. + +zsh +*** +I make extensive use of |zsh| whenever I can. The following plugins/extensions are needed for this repository to work. + +* |zsh-syntax-highlighting| (|aur|) +* |zsh-completions| +* |zsh-history-substring-search-git| (|aur|) + +autorandr +********* +For the screen setup scripts to work |autorandr| is needed. + +Installation +------------ +If the $HOME is that of a freh install, one can simple init an empty repository and set its remote to the correct path: + + .. code:: bash + + git init + # readonly link + git remote add origin git://sleepmap.de/config/dotfiles + # read/write link + git remote add origin git@sleepmap.de:config/dotfiles + git fetch + git checkout -t origin/master + + +.. |autorandr| raw:: html + + <a href="https://aur.archlinux.org/packages/autorandr-git" target="_blank">autorandr</a> + +.. |zsh| raw:: html + + <a href="https://www.archlinux.org/packages/extra/x86_64/zsh/" target="_blank">zsh</a> + +.. |zsh-completions| raw:: html + + <a href="https://www.archlinux.org/packages/community/any/zsh-completions/" target="_blank">zsh-completions</a> + +.. |zsh-syntax-highlighting| raw:: html + + <a href="https://aur.archlinux.org/packages/zsh-syntax-highlighting-git/" target="_blank">zsh-syntax-highlighting</a> + +.. |zsh-history-substring-search-git| raw:: html + + <a href="https://aur.archlinux.org/packages/zsh-history-substring-search-git/" target="_blank">zsh-history-substring-search</a> + +.. |aur| raw:: html + + <a href="https://aur.archlinux.org/" target="_blank">AUR</a> + +.. |arch_linux| raw:: html + + <a href="https://archlinux.org/" target="_blank">Arch Linux</a> |