summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolaos Boutalas <nikolaos@boutalas.me>2023-08-09 02:15:08 +0300
committerNikolaos Boutalas <nikolaos@boutalas.me>2023-10-31 12:14:51 +0200
commitf20dd96b00dbe3dc5958d8e7dab010fd0f27e09d (patch)
tree4be4555670a708a30020cae6cf916e455bbc79cb
parent2d8782ec3d2a278679dd168ca94285fb265b5669 (diff)
Configure tmux
-rw-r--r--dotfiles/tmux/.tmux.conf5
-rw-r--r--local.yml1
-rw-r--r--tasks/tmux.yml7
3 files changed, 13 insertions, 0 deletions
diff --git a/dotfiles/tmux/.tmux.conf b/dotfiles/tmux/.tmux.conf
new file mode 100644
index 0000000..f4114f8
--- /dev/null
+++ b/dotfiles/tmux/.tmux.conf
@@ -0,0 +1,5 @@
+# Remove elements from the right side of the status bar
+set -g status-right ''
+
+set -g mouse off
+
diff --git a/local.yml b/local.yml
index b584416..78b4c60 100644
--- a/local.yml
+++ b/local.yml
@@ -6,3 +6,4 @@
- ansible.builtin.import_tasks: tasks/node.yml
- ansible.builtin.import_tasks: tasks/sdkman.yml
- ansible.builtin.import_tasks: tasks/dotfiles.yml
+ - ansible.builtin.import_tasks: tasks/tmux.yml
diff --git a/tasks/tmux.yml b/tasks/tmux.yml
new file mode 100644
index 0000000..8863d64
--- /dev/null
+++ b/tasks/tmux.yml
@@ -0,0 +1,7 @@
+- name: Install tmux plugin manager
+ ansible.builtin.git:
+ repo: 'https://github.com/tmux-plugins/tpm'
+ dest: "~/.tmux/plugins/tpm"
+ version: master
+ tags:
+ - tmux