Last active
January 26, 2022 12:26
-
-
Save terrywang/3950393 to your computer and use it in GitHub Desktop.
~/.tmux.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /home/terrywang/.tmux.conf | |
# Based on tmux book written by Brian P. Hogan | |
# c-a o to switch to another panel | |
# c-d to close shell | |
# c-a ! to close panel | |
# c-a w to list windows | |
# c-a " split pane horizontally | |
# c-a % split pane vertically | |
# Setting the prefix from C-b to C-a | |
set -g prefix C-a | |
# Free the original Ctrl-b prefix keybinding | |
unbind C-b | |
# Setting the delay between prefix and command | |
set -s escape-time 1 | |
# Ensure that we can send Ctrl-a to other apps | |
bind C-a send-prefix | |
# readline beginning-of-line behaviour Ctrl-a a | |
bind a send-prefix | |
# history buffer - max number of lines for each window | |
set -g history-limit 10000 | |
# Set Terminal Emulator Titles - OFF by default | |
# set -g set-titles on | |
# Set the base index for windows to 1 instead of 0 | |
set -g base-index 1 | |
# Set the base index for panes to 1 instead of 0 | |
setw -g pane-base-index 1 | |
# Switch to last window | |
unbind l | |
bind-key C-a last-window | |
# unbind o | |
# bind-key C-a select-pane | |
# Reload the file with Prefix r | |
bind r source-file ~/.tmux.conf \; display "Reloaded!" | |
# Splitting panes replace % and " | |
# bind | split-window -h | |
# bind - split-window -v | |
# moving between panes | |
bind h select-pane -L | |
bind j select-pane -D | |
bind k select-pane -U | |
bind l select-pane -R | |
# Quick pane selection | |
bind -r C-h select-window -t :- | |
bind -r C-l select-window -t :+ | |
# Pane resizing | |
bind -r H resize-pane -L 5 | |
bind -r J resize-pane -D 5 | |
bind -r K resize-pane -U 5 | |
bind -r L resize-pane -R 5 | |
# Mouse support | |
# setw -g mode-mouse on | |
# set -g mouse-select-pane off | |
# set -g mouse-resize-pane off | |
# set -g mouse-select-window off | |
# incompatible since tmux 2.1 | |
set -g mouse on | |
# Set the default terminal mode to 256color mode | |
set -g default-terminal "screen-256color" | |
# Enable activity alerts | |
setw -g monitor-activity on | |
set -g visual-activity on | |
# tmux coloring | |
# Set the status line's colors | |
set -g status-style fg=white,bg=black | |
# Set the color of the window list | |
setw -g window-status-style fg=cyan,bg=default,dim | |
# Set colors for the active window | |
setw -g window-status-current-style fg=white,bg=red,bright | |
# Pane colors | |
set -g pane-border-style fg=green,bg=black | |
set -g pane-active-border-style fg=white,bg=yellow | |
# Command / message line | |
set -g message-style fg=white,bg=black,bright | |
# Status line left side | |
set -g status-left-length 40 | |
set -g status-left "#[fg=green]Session: #S #[fg=yellow]W#I #[fg=cyan]P#P" | |
# No longer necessary since tmux 2.1 | |
# set -g status-utf8 on | |
# Status line right side | |
# 15% | 25 Oct 14:50 | |
set -g status-right "#[fg=cyan]%d %b %R #[fg=magenta]#H" | |
# Update the status bar every sixty seconds | |
set -g status-interval 60 | |
# Center the window list | |
set -g status-justify centre | |
# Enable vi keys | |
setw -g mode-keys vi |
Does this file work? It isn't loaded by TMUX, it gives all sort of errors :-(
It gives "unknown command".
ubuntu 20.04
I am using Kali 2020 and took snippets from this to build my own and it's functioning as intended. Start with using your prefix key + : to enable the console and use -
source-file ~/.tmux.conf
I added each command I wanted one at a time and refreshed.
I've noticed that the conf file is susceptible to hidden characters that
may appear in copy paste and when saving with a certain encoding. That is
the thing that was happening
Il lun 25 mag 2020, 17:52 Christopher Soehnlein <[email protected]>
ha scritto:
… ***@***.**** commented on this gist.
------------------------------
Does this file work? It isn't loaded by TMUX, it gives all sort of errors
:-(
It gives "unknown command".
ubuntu 20.04
I am using Kali 2020 and took snippets from this to build my own and it's
functioning as intended. Start with using your prefix key + : to enable the
console and use -
source-file ~/.tmux.conf
I added each command I wanted one at a time and refreshed.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<https://gist.github.com/3950393#gistcomment-3317503>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACG2GHHQRUH5C4J735SCQL3RTKH4RANCNFSM4NEF5QLA>
.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Does this file work? It isn't loaded by tmux, it gives all sort of errors :-(
It gives "unknown command".
ubuntu 20.04