2023-04-03 14:00:04 -07:00
|
|
|
- name: Install development arch packages
|
2023-04-01 16:23:45 -07:00
|
|
|
pacman:
|
|
|
|
name:
|
|
|
|
- python # Python programming language (3.11 series)
|
|
|
|
- python-pip # A tool for installing and managing Python3 packages
|
|
|
|
- ipython
|
|
|
|
- ripgrep # Fast search tool inspired by ag and grep
|
|
|
|
- fd # Simple, fast and user-friendly alternative to find
|
|
|
|
- lazygit # Simple terminal UI for git commands
|
|
|
|
- python-pipenv # Python Development Workflow for Humans
|
|
|
|
- ruby
|
|
|
|
- perl
|
|
|
|
- cloc
|
|
|
|
state: present
|
|
|
|
become: true
|
|
|
|
|
|
|
|
- name: Install tmuxinator gem package
|
|
|
|
gem:
|
|
|
|
name: tmuxinator # Create and manage complex tmux sessions easily
|
|
|
|
state: latest
|
|
|
|
|
|
|
|
- name: Install development python packages
|
|
|
|
ansible.builtin.pip:
|
|
|
|
name:
|
|
|
|
- ansible-lint # Command-line tool for linting playbooks, roles and collections
|
|
|
|
|
|
|
|
- name: Install development flatpaks
|
|
|
|
flatpak:
|
|
|
|
name:
|
|
|
|
- com.vscodium.codium # Free/Libre Open Source Software Binaries of VS Code
|
|
|
|
state: present
|
|
|
|
become: true
|