aboutsummaryrefslogtreecommitdiff
path: root/content/notes/tmux-config.md
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2023-05-25 14:43:12 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2023-05-25 14:43:12 +0200
commit09877792588ca7a6b7c69a557a9af0730fb6a380 (patch)
treed3e0187a20a5ed298de151a2e6ee58b528baef51 /content/notes/tmux-config.md
parentfe2e0ab47508f37f3a93bfe64c366ff5b4e29255 (diff)
downloadmitjafelicijan.com-09877792588ca7a6b7c69a557a9af0730fb6a380.tar.gz
Note: Renamed tmux config to sane defaults
Diffstat (limited to 'content/notes/tmux-config.md')
-rw-r--r--content/notes/tmux-config.md36
1 files changed, 0 insertions, 36 deletions
diff --git a/content/notes/tmux-config.md b/content/notes/tmux-config.md
deleted file mode 100644
index 64bf4b2..0000000
--- a/content/notes/tmux-config.md
+++ /dev/null
@@ -1,36 +0,0 @@
1---
2title: Tmux config for my machines
3url: tmux-config.html
4date: 2023-05-25
5type: notes
6draft: false
7tags: [tmux]
8---
9
10```conf
11# Remap prefix from 'C-b' to 'M-a'.
12unbind C-b
13set-option -g prefix M-a
14bind-key M-a send-prefix
15
16# Split panes using | and -.
17bind | split-window -h
18bind - split-window -v
19unbind '"'
20unbind %
21
22# Start counting windows with 1.
23set-option -g allow-rename on
24set -g base-index 1
25setw -g pane-base-index 1
26
27# Statusbar: purple bg and white fg.
28set -g status-bg '#480b8e'
29set -g status-fg '#ffffff'
30
31# Active window: black bg and white fg.
32set -g window-status-current-format "#[fg=#ffffff]#[bg=#111111]#[fg=#ffffff]#[bg=#111111] #I:#W #[fg=#ffffff]#[bg=#111111]"
33
34# Disable mouse mode (tmux 2.1 and above).
35set -g mouse off
36```