v0.0.1
This commit is contained in:
43
tasks/main.yml
Normal file
43
tasks/main.yml
Normal file
@@ -0,0 +1,43 @@
|
||||
---
|
||||
# tasks file for ericomeehan.ericomeehan
|
||||
- name: Install user environment packages
|
||||
apt:
|
||||
name:
|
||||
- zplug
|
||||
- zsh
|
||||
state: present
|
||||
|
||||
- name: Set default shell to zsh
|
||||
user:
|
||||
name: eric
|
||||
shell: /bin/zsh
|
||||
|
||||
- name: Copy zsh configuration
|
||||
copy:
|
||||
src: zshrc
|
||||
dest: /home/eric/.zshrc
|
||||
|
||||
- name: Install custom zsh prompt
|
||||
copy:
|
||||
src: prompt_eric_setup
|
||||
dest: /usr/share/zsh/functions/Prompts/prompt_eric_setup
|
||||
|
||||
- name: Copy tmux configuration
|
||||
copy:
|
||||
src: tmux.conf
|
||||
dest: /home/eric/.tmux.conf
|
||||
|
||||
- name: Copy git configuration
|
||||
copy:
|
||||
src: gitconfig
|
||||
dest: /home/eric/.gitconfig
|
||||
|
||||
- name: Create local configuration directory
|
||||
file:
|
||||
path: /home/eric/.config/nvim
|
||||
state: directory
|
||||
|
||||
- name: Copy neovim configuration
|
||||
copy:
|
||||
src: init.lua
|
||||
dest: /home/eric/.config/nvim/init.lua
|
||||
2
tasks/mobile-command.yml
Normal file
2
tasks/mobile-command.yml
Normal file
@@ -0,0 +1,2 @@
|
||||
---
|
||||
# tasks file for mobile-command.yml
|
||||
Reference in New Issue
Block a user