Tmux vim copy/paste & vim python settings
This commit is contained in:
parent
fa63e29e5d
commit
3bfd97c7b0
3 changed files with 1465 additions and 61 deletions
|
|
@ -1,8 +1,14 @@
|
|||
# split panes using | and -
|
||||
# use vim copy/paste keybindings
|
||||
setw -g mode-keys vi
|
||||
bind-key -T copy-mode-vi 'v' send -X begin-selection # Begin selection in copy mode.
|
||||
bind-key -T copy-mode-vi 'C-v' send -X rectangle-toggle # Begin selection in copy mode.
|
||||
bind-key -T copy-mode-vi 'y' send -X copy-selection # Yank selection in copy mode.
|
||||
|
||||
# needs tmux 2.4
|
||||
bind-key -T copy-mode-vi 'v' send -X begin-selection
|
||||
bind-key -T copy-mode-vi 'V' send -X select-line
|
||||
bind-key -T copy-mode-vi 'r' send -X rectangle-toggle
|
||||
# needs xclip for system clipboard
|
||||
bind-key -T copy-mode-vi 'y' send -X copy-pipe-and-cancel "xclip -in -selection clipboard"
|
||||
|
||||
# split panes using | and -
|
||||
bind | split-window -h
|
||||
bind - split-window -v
|
||||
unbind '"'
|
||||
|
|
@ -11,33 +17,33 @@ unbind %
|
|||
# reload config file (change file location to your the tmux.conf you want to use)
|
||||
bind r source-file ~/.tmux.conf
|
||||
|
||||
## Status bar design
|
||||
set -g status-position bottom
|
||||
# status bar design
|
||||
set -g status-position top
|
||||
set -g status-bg colour239
|
||||
set -g status-attr dim
|
||||
set -g status-right ' #[fg=colour233,bg=colour102,bold] #(hostname) #[fg=colour233,bg=colour102,bold] %d/%m #[fg=colour233,bg=colour102,bold] %H:%M:%S '
|
||||
set -g status-right-length 50
|
||||
set -g status-left-length 20
|
||||
|
||||
# Current session name
|
||||
# current session name
|
||||
set-window-option -g status-left '#[fg=colour0,bg=colour102,bold] #S '
|
||||
|
||||
# Current window
|
||||
# current window
|
||||
setw -g window-status-current-fg colour0
|
||||
setw -g window-status-current-bg colour102
|
||||
setw -g window-status-current-attr bold
|
||||
setw -g window-status-current-format ' #I#[fg=colour0] #[fg=colour0]#W '
|
||||
|
||||
# Background windows
|
||||
# background windows
|
||||
setw -g window-status-fg colour0
|
||||
setw -g window-status-bg colour240
|
||||
|
||||
setw -g window-status-format ' #I#[fg=colour0] #[fg=colour0]#W '
|
||||
|
||||
# Scrollback history
|
||||
# scrollback history
|
||||
set -g mouse on
|
||||
|
||||
# Terminal colors
|
||||
# terminal colors
|
||||
set -g default-terminal "xterm-256color"
|
||||
|
||||
set-option -ga update-environment "DISPLAY SSH_ASKPASS SSH_AGENT_PID \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue