diff --git a/.conduit.yaml b/.conduit.yaml index aa6bf1a..e1b4263 100644 --- a/.conduit.yaml +++ b/.conduit.yaml @@ -1,9 +1,3 @@ --- - location: ~/.vim -- pip: - - vim-vint - - yamllint - - cmakelint -- repo: - - remote: https://github.com/k-takata/minpac.git - location: ~/.vim/pack/minpac/opt/minpac +- command: ansible-playbook main.yaml diff --git a/main.yaml b/main.yaml new file mode 100644 index 0000000..fa536b4 --- /dev/null +++ b/main.yaml @@ -0,0 +1,17 @@ +# yaml-language-server: $schema=https://json.schemastore.org/ansible-playbook.json +--- +- hosts: localhost + tasks: + - name: Install pip packages + pip: + name: '{{item}}' + state: latest + extra_args: --user + with_items: + - cmakelint + - vim-vint + - yamllint + - name: Clone minpac repository + git: + repo: https://github.com/k-takata/minpac.git + dest: pack/minpac/opt/minpac