Files
ansible-edge/roles/setup/tasks/nvim_rust.yml
Tuan-Dat Tran 40a7e1dab7 initial commit
Signed-off-by: Tuan-Dat Tran <tuan-dat.tran@tudattr.dev>
2025-01-21 23:13:01 +01:00

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"