move most important config to ansible

This commit is contained in:
Johannes Knopp
2025-09-06 15:44:39 +02:00
parent 7770c4b5e4
commit 14e4d4fe3e
49 changed files with 179 additions and 327 deletions

12
roles/nvim/tasks/main.yml Normal file
View File

@ -0,0 +1,12 @@
---
- name: Install neovim
package:
name: neovim
state: present
- name: Symlink neovim
file:
src: "{{ role_path }}/files"
dest: "{{ config_dir }}/nvim"
state: link
force: true