mirror of
https://gitlab.com/sagidayan/linux-config.git
synced 2024-11-01 05:25:24 +00:00
21 lines
517 B
YAML
21 lines
517 B
YAML
- name: Install neovim
|
|
become: true
|
|
package:
|
|
name:
|
|
- neovim
|
|
state: present
|
|
|
|
- name: clone Packer repo (Install packer)
|
|
ansible.builtin.git:
|
|
repo: https://github.com/wbthomason/packer.nvim.git
|
|
depth: 1
|
|
dest: ~/.local/share/nvim/site/pack/packer/start/packer.nvim
|
|
update: no
|
|
|
|
- name: Linking up nvim config folder
|
|
file:
|
|
src: "{{ playbook_dir }}/files/dotfiles/nvim"
|
|
dest: ~/.config/nvim
|
|
state: link
|
|
owner: "{{ ansible_user_id }}"
|
|
group: "{{ ansible_user_id }}"
|