all repos — dotfiles @ 0476739c5ebea1d74967a11f14901fd187ed8cb3

linux dotfiles

add tmux conf
Prithu Goswami prithugoswami524@gmail.com
Thu, 21 Nov 2019 21:26:59 +0530
commit

0476739c5ebea1d74967a11f14901fd187ed8cb3

parent

9f7cc24bb4eda57ee26ce0643583686121b058fd

2 files changed, 88 insertions(+), 0 deletions(-)

jump to
A .tmux.conf

@@ -0,0 +1,24 @@

+set-option -g prefix C-f +unbind-key C-b +bind-key C-f send-prefix + +bind C-c new-session + +bind h select-pane -L +bind j select-pane -D +bind k select-pane -U +bind l select-pane -R +bind > swap-pane -D +bind < swap-pane -U + +bind -r H resize-pane -L 2 +bind -r J resize-pane -D 2 +bind -r K resize-pane -U 2 +bind -r L resize-pane -R 2 + +# set -g default-terminal "tmux-256color" +# set -g terminal-overrides ",tmux-256color:Tc" +# set -as terminal-overrides ',st*:Ss@' +# set -g default-terminal "screen-256color" + +source-file ${HOME}/.config/blue.tmuxtheme
A blue.tmuxtheme

@@ -0,0 +1,64 @@

+# +# Powerline Blue Block - Tmux Theme +# Created by Jim Myhrberg <contact@jimeh.me>. +# +# Inspired by vim-powerline: https://github.com/Lokaltog/powerline +# +# Requires terminal to be using a powerline compatible font, find one here: +# https://github.com/Lokaltog/powerline-fonts +# + +# Status update interval +# set -g status-interval 1 + +# Basic status bar colors +set -g status-style fg=colour240,bg=colour233 + +# Left side of status bar +set -g status-left-style bg=colour233,fg=colour243 +set -g status-left-length 40 +set -g status-left "#[fg=colour232,bg=colour24,bold] #S #[fg=colour24,bg=colour240,nobold]#[fg=colour233,bg=colour240] #(whoami) #[fg=colour240,bg=colour235]#[fg=colour240,bg=colour235] #I:#P #[fg=colour235,bg=colour233,nobold]" + +# Right side of status bar +set -g status-right-style bg=colour233,fg=colour243 +set -g status-right-length 150 +set -g status-right "#[fg=colour235,bg=colour233]#[fg=colour240,bg=colour235] %I:%M #[fg=colour240,bg=colour235]#[fg=colour233,bg=colour240] %d-%b-%y #[fg=colour245,bg=colour240]#[fg=colour232,bg=colour245,bold] #H " + +# Window status +set -g window-status-format " #I:#W#F " +set -g window-status-current-format " #I:#W#F " + +# Current window status +set -g window-status-current-style bg=colour24,fg=colour232 + +# Window with activity status +set -g window-status-activity-style bg=colour233,fg=colour31 + +# Window separator +set -g window-status-separator "" + +# Window status alignment +set -g status-justify centre + +# Pane border +set -g pane-border-style bg=default,fg=colour238 + +# Active pane border +set -g pane-active-border-style bg=default,fg=colour24 + +# Pane number indicator +set -g display-panes-colour colour233 +set -g display-panes-active-colour colour245 + +# Clock mode +set -g clock-mode-colour colour24 +set -g clock-mode-style 24 + +# Message +set -g message-style bg=colour24,fg=black + +# Command message +set -g message-command-style bg=colour233,fg=black + +# Mode +set -g mode-style bg=colour24,fg=colour231