v1.0.0
This commit is contained in:
parent
ba6296a2ec
commit
4dc7f7917e
8
files/motd
Normal file
8
files/motd
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
|
||||||
|
|
||||||
|
.-. .-._.. .-. .-.
|
||||||
|
./.-'_( ) )/ ) )
|
||||||
|
(__.' `-' '/ / (
|
||||||
|
`-'
|
||||||
|
|
||||||
|
|
@ -3,24 +3,37 @@
|
|||||||
- name: Install user environment packages
|
- name: Install user environment packages
|
||||||
apt:
|
apt:
|
||||||
name:
|
name:
|
||||||
|
- git
|
||||||
|
- neovim
|
||||||
|
- tmux
|
||||||
- zplug
|
- zplug
|
||||||
- zsh
|
- zsh
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
- name: Set default shell to zsh
|
- name: Copy MOTD
|
||||||
user:
|
copy:
|
||||||
name: eric
|
src: files/motd
|
||||||
shell: /bin/zsh
|
dest: /etc/motd
|
||||||
|
|
||||||
|
- name: Create local configuration directory
|
||||||
|
file:
|
||||||
|
path: /home/eric/.config/nvim
|
||||||
|
state: directory
|
||||||
|
|
||||||
|
- name: Install custom zsh prompt
|
||||||
|
copy:
|
||||||
|
src: prompt_eric_setup
|
||||||
|
dest: /usr/share/zsh/functions/Prompts/prompt_eric_setup
|
||||||
|
|
||||||
- name: Copy zsh configuration
|
- name: Copy zsh configuration
|
||||||
copy:
|
copy:
|
||||||
src: zshrc
|
src: zshrc
|
||||||
dest: /home/eric/.zshrc
|
dest: /home/eric/.zshrc
|
||||||
|
|
||||||
- name: Install custom zsh prompt
|
- name: Set default shell to zsh
|
||||||
copy:
|
user:
|
||||||
src: prompt_eric_setup
|
name: eric
|
||||||
dest: /usr/share/zsh/functions/Prompts/prompt_eric_setup
|
shell: /bin/zsh
|
||||||
|
|
||||||
- name: Copy tmux configuration
|
- name: Copy tmux configuration
|
||||||
copy:
|
copy:
|
||||||
@ -32,11 +45,6 @@
|
|||||||
src: gitconfig
|
src: gitconfig
|
||||||
dest: /home/eric/.gitconfig
|
dest: /home/eric/.gitconfig
|
||||||
|
|
||||||
- name: Create local configuration directory
|
|
||||||
file:
|
|
||||||
path: /home/eric/.config/nvim
|
|
||||||
state: directory
|
|
||||||
|
|
||||||
- name: Copy neovim configuration
|
- name: Copy neovim configuration
|
||||||
copy:
|
copy:
|
||||||
src: init.lua
|
src: init.lua
|
||||||
|
Loading…
Reference in New Issue
Block a user