From 271d1a4356f92216cbc402fefc558b05de7ab5c9 Mon Sep 17 00:00:00 2001 From: Morre Date: Fri, 10 Jul 2020 14:48:52 +0200 Subject: [PATCH] Add basic tmux config --- files/dotfiles/tmux.conf | 2 ++ tasks/main.yml | 5 +++++ 2 files changed, 7 insertions(+) create mode 100644 files/dotfiles/tmux.conf diff --git a/files/dotfiles/tmux.conf b/files/dotfiles/tmux.conf new file mode 100644 index 0000000..de92168 --- /dev/null +++ b/files/dotfiles/tmux.conf @@ -0,0 +1,2 @@ +# Enable mouse +set -g mouse on diff --git a/tasks/main.yml b/tasks/main.yml index 22397cb..fc3adb8 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -20,3 +20,8 @@ src: dotfiles/screenrc dest: /etc/screenrc mode: 0644 +- name: copy tmux.conf + copy: + src: dotfiles/tmux.conf + dest: /etc/tmux.conf + mode: 0644