Last active
April 5, 2021 09:36
-
-
Save mazedlx/09d8e6a28d937d284e431ae62e5ac694 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
# Remap prefix 'C-b' to 'C-a' | |
unbind C-b # remove bind for C-b | |
set-option -g prefix C-a | |
bind-key C-a send prefix | |
# Create Panes: window splitting | |
# Split vertically | |
unbind % | |
bind | split-window -h # Prefix | to create vertical split | |
# Split horizontally | |
unbind '"' | |
bind - split-window -v # Prefix - to create horizontal split | |
########################### | |
# Colors | |
########################### | |
# color status bar | |
set -g status-style fg=white,bg=colour235 | |
# color of message bar | |
set -g message-style fg=white,bold,bg=green | |
# highlight current window | |
setw -g window-status-style fg=cyan,bg=colour235 | |
setw -g window-status-current-style fg=white,bold,bg=red | |
# set color of active pane | |
set -g pane-border-style fg=colour240,bg=black | |
set -g pane-active-border-style fg=green,bg=black | |
# List of plugins | |
set -g @plugin 'tmux-plugins/tpm' | |
set -g @plugin 'tmux-plugins/tmux-sensible' | |
set -g @plugin 'tmux-plugins/tmux-resurrect' | |
run '~/.tmux/plugins/tpm/tpm' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment