mirror of
https://gitlab.com/sagidayan/linux-config.git
synced 2024-11-14 11:45:25 +00:00
125 lines
2.6 KiB
YAML
125 lines
2.6 KiB
YAML
- name: Installing packages
|
|
become: true
|
|
package:
|
|
name:
|
|
- zsh
|
|
- curl
|
|
- gcc
|
|
- make
|
|
- wget
|
|
- git
|
|
- ranger
|
|
- jq
|
|
- man-db
|
|
state: present
|
|
|
|
- name: Some more packages (RedHat based)
|
|
become: true
|
|
package:
|
|
name:
|
|
- podman
|
|
when: ansible_facts['os_family'] == "RedHat"
|
|
|
|
- name: Copy gitconfig base
|
|
copy:
|
|
src: dotfiles/gitconfig
|
|
dest: ~/.gitconfig
|
|
force: no
|
|
|
|
- name: Setting up oh-my-zsh
|
|
git:
|
|
repo: https://github.com/ohmyzsh/ohmyzsh.git
|
|
dest: ~/.oh-my-zsh
|
|
|
|
- name: Making sure to use ZSH as shell
|
|
become: true
|
|
user:
|
|
name: "{{ running_user }}"
|
|
shell: /bin/zsh
|
|
|
|
- name: Copy zsh config
|
|
copy:
|
|
src: dotfiles/zshrc
|
|
dest: ~/.zshrc
|
|
force: yes
|
|
|
|
- name: Add ranger devicons plugin repo
|
|
git:
|
|
repo: https://github.com/alexanderjeurissen/ranger_devicons.git
|
|
dest: ~/.config/ranger/plugins/ranger_devicons
|
|
|
|
- name: Validate ranger config file
|
|
changed_when: false
|
|
file:
|
|
path: ~/.config/ranger/rc.conf
|
|
state: touch
|
|
|
|
- name: Activate ranger devicons plugin
|
|
lineinfile:
|
|
path: ~/.config/ranger/rc.conf
|
|
line: 'default_linemode devicons'
|
|
state: present
|
|
|
|
- name: Verifying shell config folder
|
|
file:
|
|
path: ~/.shellconfig
|
|
state: directory
|
|
|
|
- name: Verifying shell autocomplete config folder
|
|
file:
|
|
path: ~/.shellconfig/autocomplete
|
|
state: directory
|
|
|
|
- name: Verifying shell cheat config folder
|
|
file:
|
|
path: ~/.shellconfig/cheat
|
|
state: directory
|
|
|
|
- name: Sync Common shell settings...
|
|
changed_when: false
|
|
copy:
|
|
src: dotfiles/shellconfig/common.sh
|
|
dest: ~/.shellconfig/common.sh
|
|
force: yes
|
|
|
|
- name: Sync Cheat script
|
|
changed_when: false
|
|
copy:
|
|
src: dotfiles/shellconfig/cheat.sh
|
|
dest: ~/.shellconfig/cheat.sh
|
|
force: yes
|
|
mode: u+rx,g-rx,o-rwx
|
|
|
|
- name: Copy shell aliases
|
|
copy:
|
|
src: dotfiles/shellconfig/aliases.sh
|
|
dest: ~/.shellconfig/aliases.sh
|
|
force: no
|
|
|
|
- name: Copy shell functions
|
|
copy:
|
|
src: dotfiles/shellconfig/functions.sh
|
|
dest: ~/.shellconfig/functions.sh
|
|
force: no
|
|
|
|
- name: Copy shell environment
|
|
copy:
|
|
src: dotfiles/shellconfig/environment.sh
|
|
dest: ~/.shellconfig/environment.sh
|
|
force: no
|
|
|
|
- name: Copy languages cheat sheet list
|
|
copy:
|
|
src: dotfiles/shellconfig/cheat/languages
|
|
dest: ~/.shellconfig/cheat/languages
|
|
force: yes
|
|
|
|
- name: Copy commands cheat sheet list
|
|
copy:
|
|
src: dotfiles/shellconfig/cheat/commands
|
|
dest: ~/.shellconfig/cheat/commands
|
|
force: yes
|
|
|
|
- name: Install modern UNIX tools
|
|
include_role:
|
|
name: modern_unix_tools
|