20 lines
509 B
YAML
20 lines
509 B
YAML
# yaml-language-server: $schema=https://json.schemastore.org/ansible-playbook.json
|
|
---
|
|
- hosts: localhost
|
|
tasks:
|
|
- name: Install (neo)vim pip packages
|
|
pip:
|
|
name: '{{item}}'
|
|
state: latest
|
|
extra_args: --user
|
|
with_items:
|
|
- cmakelint
|
|
- compdb
|
|
- vim-vint
|
|
- yamllint
|
|
- name: Clone minpac repository
|
|
git:
|
|
repo: https://github.com/k-takata/minpac.git
|
|
dest: pack/minpac/opt/minpac
|
|
# TODO: Install language servers
|