Skip to content
Jamshed Vesuna edited this page Jan 6, 2016 · 5 revisions

Welcome to the altoduo/dotfiles wiki! See the pages on the right for more information.

Setup / Installation

Simple

Shell
  1. Clone into any preferred directory.
  2. cd into dotfiles/ and run ./scripts/setup
Ansible
  1. Clone into any preferred directory.
  2. cd into dotfiles/scripts/playbook and run ansible-playbook -i inventory playbook.yml

Note: This installs for user vagrant. To change the user, edit dotfiles/scripts/playbook/playbook.yml

Advanced

  1. Clone into any preferred directory.
  2. In your shell, export the global path variable $DOTFILES_PATH to the location of your dotfiles/ clone.
    1. For example, in your ~/.bashrc put the following line: export DOTFILES_PATH=~/scripts/dotfiles
  3. Source your preferred files from dotfiles.
    1. For example add the following line to your ~/.bashrc file: source $DOTFILES_PATH/bash/.bashrc
  4. To pull all git submodules, run the following two commands from the dotfiles directory:
    1. git submodule update --init --recursive
    2. git submodule foreach git pull origin master
Clone this wiki locally