21 lines
414 B
YAML
21 lines
414 B
YAML
---
|
|
- name: install choco packages
|
|
win_chocolatey:
|
|
name:
|
|
- neovim
|
|
- ag
|
|
- llvm
|
|
- nodejs
|
|
state: latest
|
|
|
|
- name: clone config repo
|
|
win_git:
|
|
repo: git@code.infektor.net:config/vim.git
|
|
dest: '{{ansible_env.LOCALAPPDATA}}/nvim'
|
|
version: master
|
|
|
|
# TODO: - name: neovim set repo email
|
|
# win_git_config:
|
|
# TODO: - name: neovim install pip packages
|
|
# win_pip:
|