Last active
August 26, 2024 12:03
-
-
Save AllanChain/3a7fb907ed966e990b06a77b7f80371c to your computer and use it in GitHub Desktop.
Custom tmux config based on oh-my-tmux
This file contains hidden or 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
# : << EOF | |
# https://github.com/gpakosz/.tmux | |
# (‑●‑●)> dual licensed under the WTFPL v2 license and the MIT license, | |
# without any warranty. | |
# Copyright 2012— Gregory Pakosz (@gpakosz). | |
tmux_conf_24b_colour=auto | |
# default theme | |
tmux_conf_theme_colour_1="#2e3440" # dark gray | |
tmux_conf_theme_colour_2="#3b4252" # gray | |
tmux_conf_theme_colour_3="#4c566a" # light gray | |
tmux_conf_theme_colour_4="#5e81ac" # light blue | |
tmux_conf_theme_colour_5="#ebcb8b" # yellow | |
tmux_conf_theme_colour_6="#2e3440" # dark gray | |
tmux_conf_theme_colour_7="#e5e9f0" # white | |
tmux_conf_theme_colour_8="#2e3440" # dark gray | |
tmux_conf_theme_colour_9="#ebcb8b" # yellow | |
tmux_conf_theme_colour_10="#d08770" # pink | |
tmux_conf_theme_colour_11="#8fbcbb" # green | |
tmux_conf_theme_colour_12="#4c566a" # light gray | |
tmux_conf_theme_colour_13="#e5e9f0" # white | |
tmux_conf_theme_colour_14="#2e3440" # dark gray | |
tmux_conf_theme_colour_15="#2e3440" # dark gray | |
tmux_conf_theme_colour_16="#bf616a" # red | |
tmux_conf_theme_colour_17="#e5e9f0" # white | |
tmux_conf_theme_terminal_title="❐ #S ● #I #W" | |
tmux_conf_theme_status_left=" ❐ #S " | |
tmux_conf_theme_status_right=" #{prefix}#{mouse}#{pairing}#{synchronized} " | |
tmux_conf_copy_to_os_clipboard=false | |
set -g history-limit 10000 | |
set -g mouse on | |
set-option -g status-interval 5 | |
set-option -g automatic-rename on | |
set-option -g automatic-rename-format '#{pane_current_command}@#{b:pane_current_path}' | |
set-option -g default-shell /bin/zsh | |
set -g status-keys vi | |
set -g mode-keys vi | |
set -gu prefix2 | |
unbind C-a | |
set -g default-terminal "tmux-256color" | |
set -as terminal-features ",xterm-256color:RGB" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment