Track .tmux.conf
authorSiraaj Khandkar <siraaj@khandkar.net>
Mon, 10 Jun 2019 10:44:30 +0000 (06:44 -0400)
committerSiraaj Khandkar <siraaj@khandkar.net>
Mon, 10 Jun 2019 10:44:30 +0000 (06:44 -0400)
Makefile
home/.tmux.conf [new file with mode: 0644]

index d083411..9140664 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -15,6 +15,7 @@ install:
        @fc-cache                   $(HOME)/.fonts
        @cp       home/.Rprofile    $(HOME)/
        @cp       home/.mpdconf     $(HOME)/
+       @cp       home/.tmux.conf   $(HOME)/
        @cp       home/.xbindkeysrc $(HOME)/
 
 # May still need to run:
diff --git a/home/.tmux.conf b/home/.tmux.conf
new file mode 100644 (file)
index 0000000..3692e36
--- /dev/null
@@ -0,0 +1,61 @@
+#
+
+set -g default-terminal "screen-256color"
+#set-option -ga terminal-overrides ",xterm-256color:Tc" # True color. Doesn't work.
+
+set -g prefix F1
+# prefix2 <NONE>
+set -g mouse on
+# mouse-utf8 on
+set -g mode-keys vi
+set -g history-limit 1000000000
+
+# assume-paste-time 1
+# base-index 0
+# bell-action any
+# bell-on-alert off
+# default-command ""
+# default-shell "/bin/zsh"
+# destroy-unattached off
+# detach-on-destroy on
+# display-panes-active-colour red
+# display-panes-colour blue
+# display-panes-time 1000
+# display-time 750
+# history-limit 2000
+# lock-after-time 0
+# lock-command "lock -np"
+# message-command-style fg=yellow,bg=black
+# message-style fg=black,bg=yellow
+# renumber-windows off
+# repeat-time 500
+# set-remain-on-exit off
+
+# #H Hostname of local host
+# #h Hostname of local host (no domain name)
+# #D Unique pane ID
+# #P Index of pane
+# #T Title of pane
+# #S Name of session
+# #F Window flags
+# #I Index of window
+# #W Name of window
+
+set  -g  set-titles        on
+set  -g  set-titles-string "#S [#I #{session_windows}] #W - #T #{session_alerts}"
+set  -g  allow-rename      on
+setw -g  automatic-rename
+
+set  -g  status           off
+setw -g  status-position  bottom
+setw -g  status-style     "fg=#3f3f3f"
+setw -ga status-style     "bg=black"
+
+setw -g  window-status-current-style  "fg=#4f4f4f"
+setw -ga window-status-current-style  "bg=black"
+
+# update-environment "DISPLAY SSH_ASKPASS SSH_AUTH_SOCK SSH_AGENT_PID SSH_CONNECTION WINDOWID XAUTHORITY"
+# visual-activity off
+# visual-bell off
+# visual-silence off
+# word-separators " -_@"
This page took 0.02064 seconds and 4 git commands to generate.