Add dotfile tree

This commit is contained in:
2021-04-07 00:14:05 +02:00
parent be993fcaf9
commit 89dc3d02c4
9 changed files with 1266 additions and 0 deletions

28
tree/.tmux.conf Normal file
View File

@ -0,0 +1,28 @@
# Set prefix to Ctrl+A
unbind C-b
set -g prefix C-a
bind C-a send-prefix
set -g mouse on
set -g history-limit 30000
set -g base-index 1
set-window-option -g xterm-keys on
set-option -sg escape-time 10
set-option -g default-terminal "tmux-256color"
# Enable vi bindings
set-window-option -g mode-keys vi
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-yank'
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin 'git@github.com/user/plugin'
# set -g @plugin 'git@bitbucket.com/user/plugin'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'