aboutsummaryrefslogtreecommitdiffstats
path: root/roles/setup_dotfiles/tasks/main.yml
blob: 47b73e45ae733b3e402c4a44c88f148df881b0f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49

# =========================================================================== #
#                   __              __      __  _____ __         
#       _________  / /__       ____/ /___  / /_/ __(_) /__  _____
#      / ___/ __ \/ / _ \     / __  / __ \/ __/ /_/ / / _ \/ ___/
#     / /  / /_/ / /  __/    / /_/ / /_/ / /_/ __/ / /  __(__  ) 
#    /_/   \____/_/\___(_)   \__,_/\____/\__/_/ /_/_/\___/____/  
#
# =========================================================================== #

---
- name: Check installation of zsh
  package:
    name: zsh
    state: present

- name: Check installation of vim
  package:
    name: vim
    state: present

- name: Check installation of tmux
  package:
    name: tmux
    state: present

- name: Copy zshrc configuration file
  copy:
    src: zshrc
    dest: /etc/zshrc
    owner: root
    group: root
    mode: 0644

- name: Copy vimrc configuration file
  copy:
    src: vimrc.local
    dest: /etc/vimrc
    owner: root
    group: root
    mode: 0644

- name: Copy tmux configuration file
  copy:
    src: tmux.conf
    dest: /etc/tmux.conf
    owner: root
    group: root
    mode: 0644
remember that computers suck.