Last active
September 4, 2019 04:34
-
-
Save kcasas/70035a3b729b80b20dfeb845f191a191 to your computer and use it in GitHub Desktop.
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
set -g default-terminal "xterm-256color" | |
# history management | |
bind -n C-k send-keys -R \; send-keys C-l \; clear-history | |
set -g history-limit 10000 | |
# tmux clipboard to system clipboard | |
bind -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel "xclip -i -f -selection primary | xclip -i -selection clipboard" | |
# vim | |
set-window-option -g mode-keys vi | |
set -g mouse on | |
set -g base-index 1 | |
setw -g pane-base-index 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment