112 lines
3.6 KiB
YAML
112 lines
3.6 KiB
YAML
---
|
|
# Common/Usersettings: Universial Dotfiles. Update regularly.
|
|
|
|
- name: usersettings - Install required tools
|
|
become: yes
|
|
ansible.builtin.apt:
|
|
name: "{{ packages }}"
|
|
state: present
|
|
update_cache: yes
|
|
vars:
|
|
packages:
|
|
- git
|
|
- python3-pip
|
|
|
|
- name: usersettings - Install/ Update oh-my-zsh for current user
|
|
ansible.builtin.git:
|
|
repo: https://github.com/robbyrussell/oh-my-zsh.git
|
|
dest: .oh-my-zsh
|
|
|
|
- name: usersettings - Install/ Update fzf sources
|
|
ansible.builtin.git:
|
|
repo: https://github.com/junegunn/fzf.git
|
|
dest: .fzf
|
|
register: fzf_git
|
|
- name: (Re-)Install fzf
|
|
ansible.builtin.shell: ".fzf/install --key-bindings --no-completion --no-update-rc"
|
|
when:
|
|
- fzf_git.after != fzf_git.before
|
|
|
|
- name: usersettings - Install pip virtualenvwrapper
|
|
block:
|
|
- name: usersettings - Install pip virtualenvwrapper (Debian)
|
|
become: yes
|
|
ansible.builtin.pip:
|
|
name: virtualenvwrapper
|
|
extra_args: --system
|
|
when: (override_os_family is defined) | ternary(override_os_family,ansible_os_family) == "Debian"
|
|
- name: usersettings - Install pip virtualenvwrapper (macOS)
|
|
environment:
|
|
PATH: "/usr/local/bin:{{ ansible_env.PATH }}"
|
|
ansible.builtin.pip:
|
|
name: virtualenvwrapper
|
|
when: (override_os_family is defined) | ternary(override_os_family,ansible_os_family) == "Darwin"
|
|
- name: usersettings - Install pip virtualenvwrapper (CentOS, ArchLinux)
|
|
become: yes
|
|
ansible.builtin.pip:
|
|
name: virtualenvwrapper
|
|
when:
|
|
(override_os_family is defined) | ternary(override_os_family,ansible_os_family) == "Centos" or
|
|
(override_os_family is defined) | ternary(override_os_family,ansible_os_family) == "Archlinux"
|
|
when: usersetup_virtualenvwrapper
|
|
- name: usersettings - Copy dotfiles
|
|
ansible.builtin.copy:
|
|
src: "{{ item.src }}"
|
|
dest: "{{ item.dest }}"
|
|
with_items:
|
|
- {
|
|
src: "{{ role_path }}/files/_gitignore_global",
|
|
dest: ".gitignore_global",
|
|
}
|
|
- { src: "{{ role_path }}/files/_vimrc", dest: ".vimrc" }
|
|
- {
|
|
src: "{{ role_path }}/files/_oh-my-zsh/jtbx.zsh-theme",
|
|
dest: ".oh-my-zsh/custom/themes/jtbx.zsh-theme",
|
|
}
|
|
- name: usersettings - Set zshrc
|
|
ansible.builtin.template:
|
|
src: "{{ role_path }}/templates/_zshrc.j2"
|
|
dest: "{{ ansible_user_dir }}/.zshrc"
|
|
- name: usersettings - Set global gitconfig
|
|
ansible.builtin.template:
|
|
src: "{{ role_path }}/templates/_gitconfig.j2"
|
|
dest: "{{ ansible_user_dir }}/.gitconfig"
|
|
when: usersetup_gitconfig == true
|
|
- name: usersettings - Set tmux.conf
|
|
ansible.builtin.template:
|
|
src: "{{ role_path }}/templates/_tmux.conf.j2"
|
|
dest: "{{ ansible_user_dir }}/.tmux.conf"
|
|
|
|
- name: usersettings - Create .vim directory
|
|
ansible.builtin.file:
|
|
path: .vim/autoload
|
|
state: directory
|
|
|
|
- name: usersettings - Install vim plugin manager
|
|
ansible.builtin.get_url:
|
|
url: https://tpo.pe/pathogen.vim
|
|
dest: .vim/autoload/pathogen.vim
|
|
|
|
- name: usersettings - Install vim plugins
|
|
ansible.builtin.git:
|
|
repo: "{{ item.repo }}"
|
|
dest: "{{ item.dest }}"
|
|
with_items:
|
|
- {
|
|
repo: "https://github.com/itchyny/lightline.vim",
|
|
dest: ".vim/bundle/lightline",
|
|
}
|
|
- { repo: "https://github.com/w0rp/ale", dest: ".vim/bundle/ale" }
|
|
- {
|
|
repo: "https://github.com/airblade/vim-gitgutter",
|
|
dest: ".vim/bundle/vim-gitgutter",
|
|
}
|
|
- {
|
|
repo: "https://github.com/sheerun/vim-polyglot",
|
|
dest: ".vim/bundle/vim-polyglot",
|
|
}
|
|
- {
|
|
repo: "https://github.com/tpope/vim-commentary",
|
|
dest: ".vim/bundle/vim-commentary",
|
|
}
|