24 lines
498 B
YAML
24 lines
498 B
YAML
- name: Install packages
|
|
become: true
|
|
apt:
|
|
pkg:
|
|
- fd-find
|
|
- bat
|
|
- name: Set default shell to bash
|
|
become: true
|
|
user:
|
|
name: "{{ ansible_user_id }}"
|
|
shell: /usr/bin/bash
|
|
- name: Install .bashrc
|
|
copy:
|
|
src: "{{ role_path }}/files/bashrc"
|
|
dest: ~/.bashrc
|
|
- name: Install fzf
|
|
git:
|
|
repo: https://github.com/junegunn/fzf.git
|
|
dest: ~/repos/fzf
|
|
depth: 1
|
|
- name: Install .fzf.bash
|
|
copy:
|
|
src: "{{ role_path }}/files/fzf.bash"
|
|
dest: ~/.fzf.bash
|