Ansible: add tasks for setting up git, nethack, and tmux configs

This commit is contained in:
Eryn Wells 2025-01-31 22:37:52 -08:00
parent 9005e00e4e
commit b8aac0793e
4 changed files with 27 additions and 3 deletions

View file

@ -0,0 +1,8 @@
---
- name: "git : Symlink configs"
ansible.builtin.include_tasks: symlink_dotfile.yml
vars:
dotfile_src: "{{ item }}"
loop:
- gitconfig
- gitignore

View file

@ -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

View file

@ -0,0 +1,5 @@
---
- name: "nethack : Symlink config"
ansible.builtin.include_tasks: symlink_dotfile.yml
vars:
dotfile_src: nethackrc

View file

@ -0,0 +1,5 @@
---
- name: "tmux : Symlink config"
ansible.builtin.include_tasks: symlink_dotfile_directory.yml
vars:
dotfile_src: config/tmux