fixing and adding packages

This commit is contained in:
Matthew Stobbs
2025-01-18 16:00:26 -07:00
parent 333ee4c3f5
commit 985da518b4
114 changed files with 555 additions and 498 deletions

View File

@@ -1,12 +1,22 @@
---
- name: Install neovim for Debian based distros
become: true
ansible.builtin.apt:
name:
- neovim
- python3-neovim
state: latest
- name: append to pkgs
when: ansible_distribution == "Fedora"
set_fact:
syspkgs: "{{ syspkgs + [ 'neovim', 'python3-neovim' ] }}"
tags:
- Debian
- RedHat
- linux
- package
- name: install neovim appimage
when: ansible_distribution != "Fedora"
become: true
ansible.builtin.get_url:
url: https://github.com/neovim/neovim/releases/download/v0.10.0/nvim.appimage
dest: /usr/local/bin/nvim
checksum: sha256:6a021e9465fe3d3375e28c3e94c1c2c4f7d1a5a67e4a78cf52d18d77b1471390
tags:
- RedHat
- linux
- package