summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryushyin <yushyin@saga>2019-06-11 12:04:03 +0200
committeryushyin <yushyin@saga>2019-06-11 12:04:03 +0200
commit3adf8a7c21ad8d0b537768b17ba6fa247bc9d368 (patch)
treeadcb8fc185de263fedb34dfaf4d49e24e0f491c8
parent49cbad5ef3b766984fb4526003e15b24629a0767 (diff)
downloaddotfiles-igor-3adf8a7c21ad8d0b537768b17ba6fa247bc9d368.tar.gz
dotfiles-igor-3adf8a7c21ad8d0b537768b17ba6fa247bc9d368.tar.xz
tmux config
-rw-r--r--config.toml2
-rw-r--r--tmux/config43
-rw-r--r--tmux/package.toml3
3 files changed, 47 insertions, 1 deletions
diff --git a/config.toml b/config.toml
index 75be80d..5c14e95 100644
--- a/config.toml
+++ b/config.toml
@@ -2,7 +2,7 @@
repositories = { main = { path = './' } }
[configurations.interactive]
-packages = ['git', 'vim']
+packages = ['git', 'vim', 'tmux']
[configurations.desktop]
dependencies = ['interactive']
diff --git a/tmux/config b/tmux/config
new file mode 100644
index 0000000..914ac36
--- /dev/null
+++ b/tmux/config
@@ -0,0 +1,43 @@
+# vim: ft=tmux
+
+# Styles
+setw -g mode-attr bright
+setw -g mode-bg default
+setw -g mode-fg yellow
+
+setw -g window-status-attr dim
+setw -g window-status-bg default
+setw -g window-status-fg default
+
+setw -g window-status-current-attr dim
+setw -g window-status-current-bg default
+setw -g window-status-current-fg yellow
+
+set -g message-attr bright
+set -g message-bg default
+set -g message-fg red
+
+set -g status-attr bright
+set -g status-bg black
+set -g status-fg default
+
+set -g pane-active-border-fg default
+set -g pane-active-border-bg black
+
+# Options
+set -g bell-action any
+set -g history-limit 50000
+set -g status on
+#set -g status-keys vi
+set -g status-utf8 on
+set -g set-titles on
+
+set -g default-terminal "screen-256color"
+set -g set-titles-string "tmux:#I [ #W ]"
+set -g base-index 1
+
+setw -g utf8 on
+setw -g automatic-rename on
+setw -g clock-mode-style 24
+
+bind r source-file ~/.config/tmux/config
diff --git a/tmux/package.toml b/tmux/package.toml
new file mode 100644
index 0000000..8e0acf0
--- /dev/null
+++ b/tmux/package.toml
@@ -0,0 +1,3 @@
+[[files]]
+source = './config'
+dest = '~/.config/tmux/config'