Created
January 5, 2018 20:06
-
-
Save sidd/5b59f2679cf11016262f3065a3268e45 to your computer and use it in GitHub Desktop.
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
set -g default-terminal "xterm-256color" | |
set -g prefix C-a | |
set -s escape-time 0 | |
set -g base-index 1 | |
set-window-option -g automatic-rename on | |
set-option -g set-titles on | |
bind-key -n M-t split-window -h "/bin/bash -c 'cd ~/dokkio/app; npm test -- --watch'" | |
bind-key M-l split-window -h /bin/bash -c "sudo tail -f /var/log/syslog -n 100" | |
bind-key -n M-k select-pane -U | |
bind-key -n M-j select-pane -D | |
bind-key -n M-h select-pane -L | |
bind-key -n M-l select-pane -R | |
bind-key -n M-n previous-window | |
bind-key -n M-m next-window | |
bind-key r source-file ~/.tmux.conf | |
# List of plugins | |
set -g @plugin 'tmux-plugins/tpm' | |
set -g @plugin 'tmux-plugins/tmux-sensible' | |
## COLORSCHEME: gruvbox dark | |
set-option -g status "on" | |
# default statusbar colors | |
set-option -g status-bg colour237 #bg1 | |
set-option -g status-fg colour223 #fg1 | |
# default window title colors | |
set-window-option -g window-status-bg colour214 #yellow | |
set-window-option -g window-status-fg colour237 #bg1 | |
set-window-option -g window-status-activity-bg colour237 #bg1 | |
set-window-option -g window-status-activity-fg colour248 #fg3 | |
# active window title colors | |
set-window-option -g window-status-current-bg default | |
set-window-option -g window-status-current-fg colour237 #bg1 | |
# pane border | |
set-option -g pane-active-border-fg colour250 #fg2 | |
set-option -g pane-border-fg colour237 #bg1 | |
# message infos | |
set-option -g message-bg colour239 #bg2 | |
set-option -g message-fg colour223 #fg1 | |
# writting commands inactive | |
set-option -g message-command-bg colour239 #fg3 | |
set-option -g message-command-fg colour223 #bg1 | |
# pane number display | |
set-option -g display-panes-active-colour colour250 #fg2 | |
set-option -g display-panes-colour colour237 #bg1 | |
# clock | |
set-window-option -g clock-mode-colour colour109 #blue | |
# bell | |
set-window-option -g window-status-bell-style fg=colour235,bg=colour167 #bg, red | |
## Theme settings mixed with colors (unfortunately, but there is no cleaner way) | |
set-option -g status-attr "none" | |
set-option -g status-justify "left" | |
set-option -g status-left-attr "none" | |
set-option -g status-left-length "80" | |
set-option -g status-right-attr "none" | |
set-option -g status-right-length "80" | |
set-window-option -g window-status-activity-attr "none" | |
set-window-option -g window-status-attr "none" | |
set-window-option -g window-status-separator "" | |
set-option -g status-left "#[fg=colour248, bg=colour241] #S #[fg=colour241, bg=colour237, nobold, noitalics, nounderscore]" | |
set-option -g status-right "#[fg=colour239, bg=colour237, nobold, nounderscore, noitalics]#[fg=colour246,bg=colour239] %Y.%m.%d %l:%M %p #[fg=colour248, bg=colour239, nobold, noitalics, nounderscore]#[fg=colour237, bg=colour248] #h " | |
set-window-option -g window-status-current-format "#[fg=colour239, bg=colour248, :nobold, noitalics, nounderscore]#[fg=colour239, bg=colour214] #I#[fg=colour239, bg=colour214, bold] #W #[fg=colour214, bg=colour237, nobold, noitalics, nounderscore]" | |
set-window-option -g window-status-format "#[fg=colour237,bg=colour239,noitalics]#[fg=colour223,bg=colour239] #I#[fg=colour223, bg=colour239] #W #[fg=colour239, bg=colour237, noitalics]" | |
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) | |
run '~/.tmux/plugins/tpm/tpm' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment