feat(role): add neovim-packer
Automatically install Packer for installing Neovim plugins.
This commit is contained in:
parent
173215da34
commit
5d94248fec
|
@ -14,6 +14,7 @@ default_roles:
|
||||||
- npm
|
- npm
|
||||||
- neovim
|
- neovim
|
||||||
- neovim-lsp
|
- neovim-lsp
|
||||||
|
- neovim-packer
|
||||||
- notion-app
|
- notion-app
|
||||||
- platformsh-cli
|
- platformsh-cli
|
||||||
- pv
|
- pv
|
||||||
|
|
7
roles/neovim-packer/tasks/main.yaml
Normal file
7
roles/neovim-packer/tasks/main.yaml
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
---
|
||||||
|
- name: Install
|
||||||
|
ansible.builtin.git:
|
||||||
|
depth: 1
|
||||||
|
dest: "{{ ansible_user_dir }}/.local/share/nvim/site/pack/packer/start/packer.nvim"
|
||||||
|
repo: https://github.com/wbthomason/packer.nvim
|
||||||
|
single_branch: true
|
Loading…
Reference in a new issue