mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
41 lines
1.3 KiB
YAML
41 lines
1.3 KiB
YAML
- name: Install terminal packages
|
|
pacman:
|
|
name:
|
|
- neovim # Vim-fork focused on extensibility and agility
|
|
- task # Command-line TODO list manager
|
|
- timew # Timewarrior tracks and reports time
|
|
- python-tasklib # Library for interacting with taskwarrior databases (Python3)
|
|
- vifm # Ncurses-based file manager with vi-like keybindings
|
|
- zsh # Z SHell
|
|
- tmux # Terminal Multiplexer
|
|
- nmap # Utility for network discovery and security auditing
|
|
- w3m # Text-based Web browser and pager (with Debian patches)
|
|
- khal # Command-line calendar build around CalDAV
|
|
- khard # Command-line addressbook built around CardDAV
|
|
- vdirsyncer # Synchronize calendars and addressbooks
|
|
- neofetch # Simple system information script
|
|
- python-setuptools
|
|
- bashtop
|
|
state: present
|
|
become: true
|
|
|
|
- name: Install terminal python packages
|
|
ansible.builtin.pip:
|
|
name:
|
|
- pynvim
|
|
- yt-dlp
|
|
|
|
- name: Install terminal cargo packages
|
|
community.general.cargo:
|
|
name: rbw # This is an unofficial command line client for Bitwarden
|
|
|
|
- name: Install github release binaries
|
|
include_tasks: ../include/download-github-archive.yml
|
|
loop:
|
|
- user: kdheepak
|
|
repo: taskwarrior-tui
|
|
regex: unknown-linux-gnu.tar.gz
|
|
- user: mickael-menu
|
|
repo: zk
|
|
regex: linux-amd64.tar.gz
|