Last active
May 1, 2019 08:01
-
-
Save smoothml/d68d9a1c281664e62902e0581101da5d to your computer and use it in GitHub Desktop.
Tmux configuration
This file contains hidden or 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
# Prefix key | |
unbind C-b | |
set -g prefix C-a | |
# Pnae switching | |
bind -n M-Left select-pane -L | |
bind -n M-Right select-pane -R | |
bind -n M-Up select-pane -U | |
bind -n M-Down select-pane -D | |
# Colour active window | |
set-window-option -g window-status-current-bg yellow | |
# Terminal colour scheme | |
set -g default-terminal "screen-256color" | |
# Enable mouse actions | |
set -g mouse on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment