diff options
| author | Ahmed Abdelhalim <[email protected]> | 2021-05-26 22:28:21 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2021-05-26 22:28:21 +0200 |
| commit | 79a9cffce1442f5fd8d062aabd6de91ffa4e9aab (patch) | |
| tree | df218ccee6c512d26c1dd0c52f2fd2dff63b12c9 /.tmux.conf | |
| parent | 02644b5e121a4b17fb0697159cfaccdf16e1e0d5 (diff) | |
Update tmux setup and install plugins
Diffstat (limited to '.tmux.conf')
| -rw-r--r-- | .tmux.conf | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -11,7 +11,10 @@ set -g base-index 1 set -g pane-base-index 1 # Scroll History -set -g history-limit 30000 +set -g history-limit 10000 + +# Don't allow pane automatic renaming +set-option -g allow-rename off # Set ability to capture on start and restore on exit window data when running an application setw -g alternate-screen on @@ -22,5 +25,10 @@ set -s escape-time 50 # Allow the arrow key to be used immediately after changing windows set-option -g repeat-time 0 -# Allow copy like vim -bind -t vi-copy y copy-pipe 'xclip -in -selection clipboard' + +# Tmux plugins +set -g @plugin 'tmux-plugins/tpm' +set -g @plugin 'tmux-plugins/tmux-logging' + +# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) +run '~/.tmux/plugins/tpm/tpm' |
