Install pynvim from pip

master
mandlm 2020-11-13 08:51:11 +01:00
parent 65e4779c6b
commit 7bacbc8662
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
1 changed files with 9 additions and 2 deletions

View File

@ -1,14 +1,21 @@
--- ---
- name: install prerequisites - name: install prerequisites (apt)
package: package:
name: name:
- nodejs - nodejs
- npm - npm
- python-neovim
- python3 - python3
- ripgrep - ripgrep
state: latest state: latest
- name: install prerequisites (pip)
become_user: "{{ account.name }}"
pip:
name:
- pynvim
state: latest
extra_args: --user
- name: download neovim appimage - name: download neovim appimage
get_url: get_url:
url: https://github.com/neovim/neovim/releases/latest/download/nvim.appimage url: https://github.com/neovim/neovim/releases/latest/download/nvim.appimage