This repository has been archived on 2024-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
setup/roles/bash/tasks/main.yml

20 lines
382 B
YAML
Raw Normal View History

2023-01-15 14:00:38 +00:00
- name: Install packages
become: true
apt:
pkg:
- fd-find
- bat
- name: Install .bashrc
copy:
src: "{{ role_path }}/files/bashrc"
dest: ~/.bashrc
2023-02-11 14:01:29 +00:00
- name: Install fzf
git:
repo: https://github.com/junegunn/fzf.git
dest: ~/repos/fzf
depth: 1
2023-01-15 14:00:38 +00:00
- name: Install .fzf.bash
copy:
src: "{{ role_path }}/files/fzf.bash"
dest: ~/.fzf.bash