Commit 94605bf
Changed files (1)
main.yml
@@ -22,4 +22,42 @@
value: bryon.fryer@gmail.com
- name: user.name
value: bryfry
-
+ - name: color.ui
+ value: true
+
+ - name: git checkouts
+ git:
+ repo: "{{ item.repo }}"
+ dest: "{{ git_dir }}/{{ item.dir }}"
+ vars:
+ git_dir: "$HOME/git"
+ loop:
+ - repo: git@github.com:bryfry/home.git
+ dir: home
+ - repo: git@github.com:bryfry/logbook.git
+ dir: logbook
+ - repo: git@ssh.gitlab.external.ltsnet.net:bfryer/notes.git
+ dir: lts.notes
+
+
+ - name: home directory symlinks
+ file:
+ src: "{{ item.src }}"
+ dest: "{{ item.dest }}"
+ state: link
+ vars:
+ git_dir: "$HOME/git"
+ home_repo: "{{ git_dir }}/home"
+ loop:
+ - src: "{{ home_repo }}/tmux.conf"
+ dest: "$HOME/.tmux.conf"
+ - src: "{{ home_repo }}/tmux.statusbar.conf"
+ dest: "$HOME/.tmux.statusbar.conf"
+ - src: "{{ home_repo }}/ssh_config"
+ dest: "$HOME/.ssh/config"
+ - src: "{{ home_repo }}/vimrc"
+ dest: "$HOME/.vimrc"
+ - src: "{{ home_repo }}/bash_aliases"
+ dest: "$HOME/.bash_aliases"
+ - src: "{{ home_repo }}/screenrc"
+ dest: "$HOME/.screenrc"