28 lines
557 B
YAML
28 lines
557 B
YAML
---
|
|
- 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
|