dotfiles/tasks/shell.yml

136 lines
2.6 KiB
YAML
Raw Normal View History

- name: Install shell packages
kewlfft.aur.aur:
2019-03-14 21:34:29 +00:00
name: "{{ item }}"
become: true
become_user: aur_builder
loop:
- advanced-ssh-config
- alacritty
- arch-install-scripts
- bat
- catimg
- climate
- cmatrix
- exa
- fd
- fpp
- htop
- jshon
- jq
- nnn
- oh-my-zsh-git
- pazi
- perl-file-mimeinfo
- pipes.sh
- playerctl
- progress
- reptyr
- ripgrep
- scrcpy
- screenfetch
- speedtest-cli
- sl
- terminator
- thefuck
- tmux
- tmux-xpanes
- ruby-tmuxinator
- xclip
- xsel
- zsh
- zsh-completions
- zsh-doc
- zsh-syntax-highlighting
2019-03-14 21:34:29 +00:00
2019-05-25 16:50:09 +01:00
- name: Install ZSH config
template:
2018-09-10 20:08:35 +01:00
src: ./files/zshrc/.zshrc
2018-09-17 17:22:15 +01:00
dest: "{{ home }}/.zshrc"
2018-09-10 20:08:35 +01:00
mode: 0644
2018-09-17 17:22:15 +01:00
owner: "{{ user }}"
validate: zsh -n %s
2018-09-18 13:19:31 +01:00
backup: true
trim_blocks: false
2018-09-10 20:08:35 +01:00
2021-03-10 11:07:23 +00:00
- name: Install global environment variables
2019-05-25 16:50:09 +01:00
template:
2018-09-10 20:08:35 +01:00
src: ./files/global-environment
dest: /etc/environment
mode: 0644
owner: root
group: root
2019-05-25 16:50:09 +01:00
- name: Install tmux config
template:
2018-09-10 20:08:35 +01:00
src: ./files/tmux.conf
2018-09-17 17:22:15 +01:00
dest: "{{ home }}/.tmux.conf"
2018-09-10 20:08:35 +01:00
mode: 0755
2018-09-17 17:22:15 +01:00
owner: "{{ user }}"
2018-09-10 20:08:35 +01:00
group: users
2018-12-03 22:00:17 +00:00
2019-11-04 20:09:04 +00:00
- name: Install tmux packages
2019-05-25 16:50:09 +01:00
git:
2019-11-04 20:09:04 +00:00
repo: "{{ item }}"
dest: "{{ home }}/.tmux/plugins/{{ item.split('/')[-1] }}"
2018-12-03 22:00:17 +00:00
force: true
become: true
become_user: "{{ user }}"
loop:
2019-11-04 20:09:04 +00:00
- https://github.com/jimeh/tmux-themepack
- https://github.com/tmux-plugins/tmux-yank
- https://github.com/tmux-plugins/tmux-sensible
- https://github.com/tmux-plugins/tmux-fpp
2019-03-14 21:34:29 +00:00
- name: Create alacritty config directory
2019-03-14 21:34:29 +00:00
file:
path: "{{ home }}/.config/alacritty/"
2019-03-14 21:34:29 +00:00
state: directory
owner: "{{ user }}"
mode: 0755
- name: Create alacritty config
2019-03-14 21:34:29 +00:00
copy:
src: ./files/alacritty.yml
dest: "{{ home }}/.config/alacritty/alacritty.yml"
2019-03-14 21:34:29 +00:00
mode: 0644
owner: "{{ user }}"
- name: Create terminator directory
2019-03-14 21:34:29 +00:00
file:
path: "{{ home }}/.config/terminator/"
2019-03-14 21:34:29 +00:00
state: directory
owner: "{{ user }}"
mode: 0755
- name: Create alacritty config
2019-03-14 21:34:29 +00:00
copy:
src: ./files/terminator.conf
dest: "{{ home }}/.config/terminator/config"
2019-03-14 21:34:29 +00:00
mode: 0644
owner: "{{ user }}"
2019-05-12 11:49:20 +01:00
2019-05-25 16:50:09 +01:00
- name: Install tmuxinator config
copy:
2019-05-12 11:49:20 +01:00
src: ./files/tmuxinator
2019-07-30 08:49:17 +01:00
dest: "{{ home }}/.config"
mode: 0644
2019-05-12 11:49:20 +01:00
owner: "{{ user }}"
group: users
2019-07-30 08:49:17 +01:00
directory_mode: 0755
2019-05-24 22:44:10 +01:00
- name: Install custom scripts
copy:
src: ./files/bin
dest: /usr/local
mode: 0755
directory_mode: 0755
2019-05-24 22:44:10 +01:00
- name: Set vconsole keyboard
lineinfile:
path: /etc/vconsole.conf
state: present
line: KEYMAP=uk
create: true
2020-11-25 12:11:10 +00:00
mode: 0644