Compare commits

..

2 Commits

6 changed files with 15 additions and 8 deletions

View File

@ -1,7 +1,11 @@
---
- name: install homebrew packages
homebrew:
name: neovim
name:
- neovim
state: latest
- set_fact:
neovim_pip_packages: '{{neovim_pip_packages + ["pynvim"]}}'
- include_tasks: Unix.yaml

View File

@ -10,7 +10,9 @@
- name: install apt package
become: true
apt:
name: neovim
name:
- neovim
- python3-neovim
state: latest
- include_tasks: Unix.yaml

View File

@ -1,8 +1,10 @@
---
- name: install yum package
- name: install dnf package
become: true
yum:
name: neovim
dnf:
name:
- neovim
- python3-neovim
state: latest
- include_tasks: Unix.yaml

View File

@ -8,8 +8,6 @@
dest: '{{vim_config_dir}}'
version: master
# TODO: - name: set repo email
- name: install pip packages
pip:
name: '{{neovim_pip_packages}}'

View File

@ -3,6 +3,5 @@ neovim_pip_packages:
- cmake-language-server
- cmakelint
- compdb
- pynvim
- vim-vint
- yamllint

View File

@ -34,6 +34,8 @@
dest: '{{ansible_env.HOME}}/.local/bin/WebCatalog'
state: link
# TODO: icon for desktop file
- name: create desktop file
template:
src: webcatalog.desktop.j2