<codebook> spellcheck lsp, <difftastic> diff with code syntax understanding, <trash-cli> trash cli, files autodelete in 30 days setup

This commit is contained in:
ProgramSnail 2025-08-08 14:41:44 +03:00
parent 6561d54f45
commit 19b706da4c
4 changed files with 42 additions and 19 deletions

View file

@ -1,9 +1,11 @@
- name: Install cli tools
ansible.builtin.dnf5:
name:
# shell utils
- just
# shells & shell utils
- bash
- fish
- trash-cli
- just
- jsonnet
# edit utils
@ -15,9 +17,15 @@
# git
- git-delta
- difftastic
- git
# other
- ansible
state: latest
- name: Clear trash automatically every 30 days
ansible.builtin.shell:
cmd: sh
stdin: '(crontab -l ; echo "@daily $(which trash-empty) 30")'