Add useful tmux plugins

This commit is contained in:
Jake Howard 2019-11-04 20:09:04 +00:00
parent b669976950
commit f049d15b99
Signed by: jake
GPG Key ID: 57AFB45680EDD477
2 changed files with 13 additions and 4 deletions

View File

@ -11,6 +11,9 @@ unbind C-b
set -g prefix C-t set -g prefix C-t
bind C-t send-prefix bind C-t send-prefix
source-file "{{ home }}/.tmux/plugins/tmux-themepack/basic.tmuxtheme" source-file "{{ home }}/.tmux/plugins/tmux-themepack/basic.tmuxtheme"
run-shell "{{ home }}/.tmux/plugins/tmux-yank/yank.tmux"
run-shell "{{ home }}/.tmux/plugins/tmux-sensible/sensible.tmux"
run-shell "{{ home }}/.tmux/plugins/tmux-fpp/fpp.tmux"
set-window-option -g automatic-rename on set-window-option -g automatic-rename on
set-option -g set-titles on set-option -g set-titles on

View File

@ -16,6 +16,7 @@
- 'exa' - 'exa'
- 'fasd' - 'fasd'
- 'fd' - 'fd'
- 'fpp'
- 'htop' - 'htop'
- 'jshon' - 'jshon'
- 'jq' - 'jq'
@ -34,6 +35,7 @@
- 'thefuck' - 'thefuck'
- 'tmux' - 'tmux'
- 'ruby-tmuxinator' - 'ruby-tmuxinator'
- 'xsel'
- 'zsh' - 'zsh'
- 'zsh-completions' - 'zsh-completions'
- 'zsh-doc' - 'zsh-doc'
@ -66,14 +68,18 @@
owner: "{{ user }}" owner: "{{ user }}"
group: users group: users
- name: Install tmux themepack - name: Install tmux packages
git: git:
repo: https://github.com/jimeh/tmux-themepack.git repo: "{{ item }}"
dest: "{{ home }}/.tmux/plugins/tmux-themepack" dest: "{{ home }}/.tmux/plugins/{{ item.split('/')[-1] }}"
force: true force: true
become: true become: true
become_user: "{{ user }}" become_user: "{{ user }}"
with_items:
- 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
- name: "Create alacritty config directory" - name: "Create alacritty config directory"
file: file: