2023-07-03 22:54:01 -07:00

36 lines
1.1 KiB
YAML

- name: Install development packages
apt:
name:
- python3 # Python programming language (3.11 series)
- python3-pip # A tool for installing and managing Python3 packages
- python3-ipython
- ripgrep # Fast search tool inspired by ag and grep
- fd-find # Simple, fast and user-friendly alternative to find
- pipenv # Python Development Workflow for Humans
- python3-dev # Python programming language (3.11 series) - development files
- cloc
state: present
become: true
- name: Install development python packages
ansible.builtin.pip:
name:
- ansible-lint # Command-line tool for linting playbooks, roles and collections
- pyright
- tmuxp
- name: Install lazygit
include_tasks: ../include/download-github-archive.yml
loop:
- user: jesseduffield
repo: lazygit # Simple terminal UI for git commands
regex: Linux_x86_64.tar.gz
- name: Install development flatpaks
flatpak:
name:
- com.vscodium.codium # Free/Libre Open Source Software Binaries of VS Code
- com.github.GradienceTeam.Gradience
state: present
become: true