mahbinstuff/tmux.conf

43 lines
1.3 KiB
Text
Raw Normal View History

2021-04-18 16:50:19 +00:00
# start up with screen keys
2015-01-09 17:08:24 +02:00
set -g prefix C-a
unbind C-b
bind-key a send-prefix
bind-key C-a last-window
2021-04-18 16:50:19 +00:00
# #F: flag, #I, window index, #W window name, #P pane, #D pane unique id, #S session, #T pane title,
set -g status-left "#[fg=colour005,bg=colour107]#S🍱 #I #[bg=colour156,fg=colour20]🍕#P(#D)#[fg=colour18,bg=colour113] 📛 #W "
2015-01-09 17:08:24 +02:00
set -g status-left-length 40
2021-04-18 16:50:19 +00:00
set -g status-right "%Y/%m/%e %H:%M %Z"
2015-01-09 17:08:24 +02:00
setw -g monitor-activity on
set -g visual-activity on
set -g status-justify left
2021-04-18 16:50:19 +00:00
set -g status-fg colour151
set -g status-bg colour058
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-pain-control'
set -g @plugin 'tmux-plugins/tmux-urlview'
set -g @plugin 'jimeh/tmux-themepack'
set -g @themepack 'powerline/double/green'
2015-01-09 17:08:24 +02:00
2021-04-18 16:50:19 +00:00
# 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'
2015-01-09 17:08:24 +02:00
2021-04-18 16:50:19 +00:00
# set up tmux plugin manager
# git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
# or install tmux-plugin-manager and tmux-themepack-jimeh via apt
2015-01-09 17:08:24 +02:00
2021-04-18 16:50:19 +00:00
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
#run '~/.tmux/plugins/tpm/tpm'
run '/usr/share/tmux-plugin-manager/tpm'
2021-04-18 16:50:19 +00:00
set-option -ga terminal-overrides ",xterm-256color:Tc"