Ansible: add tasks for setting up git, nethack, and tmux configs
This commit is contained in:
parent
9005e00e4e
commit
b8aac0793e
4 changed files with 27 additions and 3 deletions
8
Ansible/roles/eryn/tasks/git.yml
Normal file
8
Ansible/roles/eryn/tasks/git.yml
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
- name: "git : Symlink configs"
|
||||
ansible.builtin.include_tasks: symlink_dotfile.yml
|
||||
vars:
|
||||
dotfile_src: "{{ item }}"
|
||||
loop:
|
||||
- gitconfig
|
||||
- gitignore
|
|
@ -1,11 +1,17 @@
|
|||
---
|
||||
- name: Configure ZSH
|
||||
import_tasks: zsh.yml
|
||||
|
||||
- name: Configure XDG environment
|
||||
import_tasks: xdg_home.yml
|
||||
|
||||
- name: Configure zsh
|
||||
import_tasks: zsh.yml
|
||||
|
||||
- name: Configure vim
|
||||
import_tasks: vim.yml
|
||||
- name: Configure neovim
|
||||
import_tasks: neovim.yml
|
||||
|
||||
- name: Configure git
|
||||
import_tasks: git.yml
|
||||
|
||||
- name: Configure tmux
|
||||
import_tasks: tmux.yml
|
||||
|
|
5
Ansible/roles/eryn/tasks/nethack.yml
Normal file
5
Ansible/roles/eryn/tasks/nethack.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
- name: "nethack : Symlink config"
|
||||
ansible.builtin.include_tasks: symlink_dotfile.yml
|
||||
vars:
|
||||
dotfile_src: nethackrc
|
5
Ansible/roles/eryn/tasks/tmux.yml
Normal file
5
Ansible/roles/eryn/tasks/tmux.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
- name: "tmux : Symlink config"
|
||||
ansible.builtin.include_tasks: symlink_dotfile_directory.yml
|
||||
vars:
|
||||
dotfile_src: config/tmux
|
Loading…
Add table
Add a link
Reference in a new issue