12 lines
283 B
YAML
12 lines
283 B
YAML
---
|
|
- name: Install neovim npm package globally
|
|
npm:
|
|
name: neovim
|
|
global: yes
|
|
|
|
- name: Install Rust (via rustup)
|
|
become: false
|
|
shell: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
|
args:
|
|
creates: "{{ ansible_env.HOME }}/.cargo/bin/rustc"
|