Initial commit

This commit is contained in:
Waffles
2022-12-21 22:30:01 -08:00
commit 19ebda26b4
47 changed files with 1429 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
---
dependencies:
- role: ansible-role-neovim
- role: geerlingguy.docker
- role: ansible-role-oh-my-zsh
vars:
users:
- username: root
oh_my_zsh:
theme: agnoster
plugins:
- git
+27
View File
@@ -0,0 +1,27 @@
---
- name: Install prometheus node exporter
package:
name: prometheus-node-exporter
state: present
- name: Create nvim config dir
file:
path: /root/.config/nvim
state: directory
- name: Install nvim config file
template:
src: templates/nvim/init.vim.j2
dest: /root/.config/nvim/init.vim
- name: Install nvim plugins
command: nvim --headless +PluginInstall +qall
args:
creates: /root/.vim/bundle/
- name: Clone fzf
git:
repo: https://github.com/junegunn/fzf
dest: /root/fzf
clone: yes
update: yes