everything up until now
This commit is contained in:
1
plugins/tmux-sensible
Submodule
1
plugins/tmux-sensible
Submodule
Submodule plugins/tmux-sensible added at 25cb91f42d
1
plugins/tmux-yank
Submodule
1
plugins/tmux-yank
Submodule
Submodule plugins/tmux-yank added at acfd36e4fc
1
plugins/tpm
Submodule
1
plugins/tpm
Submodule
Submodule plugins/tpm added at 99469c4a9b
1
plugins/vim-tmux-navigator
Submodule
1
plugins/vim-tmux-navigator
Submodule
Submodule plugins/vim-tmux-navigator added at 38b1d0402c
43
tmux.conf
Normal file
43
tmux.conf
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
# Keybinds
|
||||||
|
bind -n M-H previous-window
|
||||||
|
bind -n M-L next-window
|
||||||
|
|
||||||
|
# 1-Indexed window numbering
|
||||||
|
set -g base-index 1
|
||||||
|
set -g pane-base-index 1
|
||||||
|
set-window-option -g pane-base-index 1
|
||||||
|
set-option -g renumber-windows on
|
||||||
|
|
||||||
|
# Move pane splits
|
||||||
|
bind Up resize-p -U 2
|
||||||
|
bind Down resize-p -D 2
|
||||||
|
bind Left resize-p -L 2
|
||||||
|
bind Right resize-p -R 2
|
||||||
|
|
||||||
|
# Better copy
|
||||||
|
set-window-option -g mode-keys vi
|
||||||
|
bind-key -T copy-mode-vi v send-keys -X begin-selection
|
||||||
|
bind-key -T copy-mode-vi C-v send-keys -X rectangle-toggle
|
||||||
|
bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel
|
||||||
|
|
||||||
|
# Color fix
|
||||||
|
set-option -sa terminal-overrides ",xterm*:Tc"
|
||||||
|
|
||||||
|
# Set prefix
|
||||||
|
unbind C-b
|
||||||
|
set -g prefix C-Space
|
||||||
|
bind C-Space send-prefix
|
||||||
|
|
||||||
|
# Open panes in current dir
|
||||||
|
bind '"' split-window -v -c "#{pane_current_path}"
|
||||||
|
bind % split-window -h -c "#{pane_current_path}"
|
||||||
|
|
||||||
|
# List of plugins
|
||||||
|
set -g @plugin 'tmux-plugins/tpm'
|
||||||
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
||||||
|
set -g @plugin 'christoomey/vim-tmux-navigator'
|
||||||
|
set -g @plugin 'tmux-plugins/tmux-yank'
|
||||||
|
|
||||||
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
||||||
|
run '~/.tmux/plugins/tpm/tpm'
|
||||||
|
|
||||||
Reference in New Issue
Block a user