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

28 lines
612 B
YAML
Raw Permalink Normal View History

2023-01-15 14:00:38 +00:00
- name: Install packages
become: true
apt:
pkg:
- fd-find
- bat
2023-02-13 23:13:10 +00:00
- fzf
2023-01-15 14:00:38 +00:00
- name: Install .bashrc
2023-03-04 13:28:09 +00:00
copy:
src: "{{ role_path }}/files/bashrc"
2023-01-15 14:00:38 +00:00
dest: ~/.bashrc
2023-03-04 13:28:09 +00:00
- name: Create bashrc config directory
file:
path: ~/.bashrc.d
state: directory
- name: Copy base.bashrc
template:
src: "{{ role_path }}/templates/base.bashrc.j2"
dest: ~/.bashrc.d/base.bashrc
- name: Copy fzf.bash
2023-01-15 14:00:38 +00:00
copy:
2023-03-04 13:28:09 +00:00
src: "{{ role_path }}/files/fzf.bashrc"
dest: ~/.bashrc.d/fzf.bashrc
2023-06-11 22:04:31 +00:00
- name: Clone fzf repository
git:
repo: https://github.com/junegunn/fzf.git
dest: ~/repos/fzf