mirror of
https://gitlab.com/dbrw/ansible-setup.git
synced 2025-08-04 18:25:40 +07:00
27 lines
752 B
YAML
27 lines
752 B
YAML
---
|
|
- name: Create SpaceVim.d directory
|
|
file:
|
|
path: "/home/{{ username }}/.SpaceVim.d"
|
|
state: directory
|
|
|
|
- name: Get init.toml file
|
|
get_url:
|
|
url: https://raw.githubusercontent.com/SpaceVim/SpaceVim/master/mode/dark_powered.toml
|
|
dest: "/home/{{ username }}/.SpaceVim.d/init.toml"
|
|
|
|
- name: Get SpaceVim install script
|
|
get_url:
|
|
url: https://spacevim.org/install.sh
|
|
dest: "/home/{{ username }}/install-spacevim.sh"
|
|
mode: "0747"
|
|
|
|
- name: Install SpaceVim
|
|
become: True
|
|
become_user: "{{ username }}"
|
|
command: "bash /home/{{ username }}/install-spacevim.sh"
|
|
|
|
- name: Add custom vim plugins
|
|
blockinfile:
|
|
path: "/home/{{ username }}/.SpaceVim.d/init.toml"
|
|
insertafter: EOF
|
|
content: "{{ custom_vim_plugins }}" |