This repository has been archived on 2021-09-08. You can view files and clone it, but cannot push or open issues/pull-requests.
2021-04-16 12:59:28 -04:00
|
|
|
---
|
|
|
|
- name: clone neovim github repo
|
2021-06-04 12:49:57 -04:00
|
|
|
ansible.builtin.git:
|
|
|
|
repo: 'https://github.com/neovim/neovim.git'
|
|
|
|
dest: "{{ ansible_env.HOME }}/dev/neovim"
|
|
|
|
update: no
|
|
|
|
|
|
|
|
- name: build neovim
|
|
|
|
ansible.builtin.shell: "cd ~/dev/neovim && gmake && sudo gmake install"
|
2021-04-16 12:59:28 -04:00
|
|
|
args:
|
|
|
|
creates: /usr/local/bin/nvim
|