From 678dff9a1a4bd59d7554ee2ca57c521a80eccb55 Mon Sep 17 00:00:00 2001 From: Emilien Mantel Date: Fri, 20 Apr 2018 09:20:39 +0200 Subject: [PATCH] Tune vimrc (mouse is boring on stretch) --- tests/includes/pre_common.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/includes/pre_common.yml b/tests/includes/pre_common.yml index b8bf3a0..46e4fec 100644 --- a/tests/includes/pre_common.yml +++ b/tests/includes/pre_common.yml @@ -16,3 +16,12 @@ shell: curl 'http://127.0.0.1:4040/api/tunnels/command_line' | jq '.public_url' | grep -oE '[[:alnum:]]+\.ngrok\.io' register: ngrok changed_when: false + +- name: LINEINFILE | Tune vimrc + lineinfile: + line: "set mouse=" + dest: "{{ item }}/.vimrc" + create: yes + with_items: + - /root + - /home/vagrant