107 lines
4.1 KiB
Plaintext
107 lines
4.1 KiB
Plaintext
# Kapper
|
|
set -g mouse on
|
|
|
|
set-option -g status-position top
|
|
# Can't use theme plugin without risk of repo update overwriting data?
|
|
#source-file "${HOME}/.tmux-themepack/powerline/double/green.tmuxtheme"
|
|
|
|
#
|
|
# Powerline Double Green - 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=colour233,bg=colour100,bold] #S #[fg=colour100,bg=colour240,nobold]#[fg=colour233,bg=colour240] #(whoami) #[fg=colour240,bg=colour235]#[fg=colour240,bg=colour235] #I:#P #[fg=colour235,bg=colour208]#[fg=colour240,bg=colour208] #{git_remote} #{git_flags} #[fg=colour208,bg=colour233,nobold]"
|
|
|
|
set -g status-left "#[fg=colour233,bg=colour100,bold] #S #[fg=colour100,bg=colour240,nobold]#[fg=colour233,bg=colour240] #(uname -m)#F #[fg=colour240,bg=colour235]#[fg=colour240,bg=colour235] #I:#P #[fg=colour235,bg=colour233]#[fg=colour240,bg=colour233] #(uname -r)"
|
|
|
|
# Tmux Git
|
|
#let -g status-left "#[fg=colour233,bg=colour100,bold] #S #[fg=colour100,bg=colour240,nobold]#[fg=colour233,bg=colour240] #(whoami) #[fg=colour240,bg=colour235]#[fg=colour240,bg=colour235] #I:#P #[fg=colour235,bg=colour208]#[fg=colour240,bg=colour208] #{git_remote} #{git_flags} #[fg=colour208,bg=colour233,nobold]"
|
|
|
|
# Right side of status bar
|
|
set -g status-right-style bg=colour233,fg=colour243
|
|
set -g status-right-length 150
|
|
|
|
# Hide right bar entirely
|
|
set -g status-right ""
|
|
|
|
# Default
|
|
set -g status-right "#[fg=colour235,bg=colour233]#[fg=colour240,bg=colour235] %H:%M:%S #[fg=colour240,bg=colour235]#[fg=colour233,bg=colour240] %d-%b-%y #[fg=colour100,bg=colour240]#[fg=colour233,bg=colour100,bold] #H "
|
|
|
|
# Simple Git
|
|
#set -g status-right "#[fg=colour235,bg=colour233] #{simple_git_status} #[fg=colour240,bg=colour235] %H:%M:%S #[fg=colour240,bg=colour235]#[fg=colour233,bg=colour240] %d-%b-%y #[fg=colour100,bg=colour240]#[fg=colour233,bg=colour100,bold] #H "
|
|
|
|
# Tmux Git
|
|
#set -g status-right "#[fg=colour208,bg=colour233]#[fg=colour235,bg=colour208] #{git_upstream} #{git_branch} #[fg=colour240,bg=colour235] %H:%M:%S #[fg=colour240,bg=colour235]#[fg=colour233,bg=colour240] %d-%b-%y #[fg=colour100,bg=colour240]#[fg=colour233,bg=colour100,bold] #H "
|
|
|
|
# Window status
|
|
set -g window-status-format " #I:#W#F (TMUX OTHER STATUS) #(pwd | sed -e "s|.*/\(.*/.*\)|\1|") "
|
|
set -g window-status-current-format "#[fg=colour233,bg=black]#[fg=colour190,nobold] #(whoami)@#H #[fg=colour233,bg=black,nobold]"
|
|
# #{pane_current_path}
|
|
|
|
# Current window status
|
|
set -g window-status-current-style bg=colour100,fg=colour235
|
|
|
|
# Window with activity status
|
|
set -g window-status-activity-style bg=colour233,fg=colour245
|
|
|
|
# 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=colour100
|
|
|
|
# Pane number indicator
|
|
set -g display-panes-colour colour233
|
|
set -g display-panes-active-colour colour245
|
|
|
|
# Clock mode
|
|
set -g clock-mode-colour colour100
|
|
set -g clock-mode-style 24
|
|
|
|
# Message
|
|
set -g message-style bg=colour100,fg=black
|
|
|
|
# Command message
|
|
set -g message-command-style bg=colour233,fg=black
|
|
|
|
source-file "$HOME/.tmux-gitbar/tmux-gitbar.tmux"
|
|
set -g default-terminal "screen-256color"
|
|
|
|
# Mode
|
|
set -g mode-style bg=colour100,fg=colour235
|
|
|
|
# List of plugins
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
#set -g @plugin 'kristijanhusak/tmux-simple-git-status'
|
|
|
|
|
|
# Other examples:
|
|
# set -g @plugin 'github_username/plugin_name'
|
|
# set -g @plugin 'git@github.com/user/plugin'
|
|
# set -g @plugin 'git@bitbucket.com/user/plugin'
|
|
|
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
|
run -b '~/.tmux/plugins/tpm/tpm'
|
|
|