Added 2 new plugins since last checkin
This commit is contained in:
parent
aefde55369
commit
9c19e36b29
2 changed files with 13 additions and 4 deletions
|
@ -23,14 +23,17 @@ set -g visual-activity on
|
||||||
set -g mode-keys vi
|
set -g mode-keys vi
|
||||||
set -g history-limit 10000
|
set -g history-limit 10000
|
||||||
|
|
||||||
|
set -g status-bg blue
|
||||||
|
set -g status-fg white
|
||||||
|
|
||||||
# y and p as in vim
|
# y and p as in vim
|
||||||
bind Escape copy-mode
|
bind Escape copy-mode
|
||||||
unbind p
|
unbind p
|
||||||
bind p paste-buffer
|
bind p paste-buffer
|
||||||
bind -t vi-copy 'v' begin-selection
|
#bind -t vi-copy 'v' begin-selection
|
||||||
bind -t vi-copy 'y' copy-selection
|
#bind -t vi-copy 'y' copy-selection
|
||||||
bind -t vi-copy 'Space' halfpage-down
|
#bind -t vi-copy 'Space' halfpage-down
|
||||||
bind -t vi-copy 'Bspace' halfpage-up
|
#bind -t vi-copy 'Bspace' halfpage-up
|
||||||
|
|
||||||
# extra commands for interacting with the ICCCM clipboard
|
# extra commands for interacting with the ICCCM clipboard
|
||||||
bind C-c run "tmux save-buffer - | xclip -i -sel clipboard"
|
bind C-c run "tmux save-buffer - | xclip -i -sel clipboard"
|
||||||
|
@ -57,3 +60,6 @@ bind -r H resize-pane -L 5
|
||||||
bind -r J resize-pane -D 5
|
bind -r J resize-pane -D 5
|
||||||
bind -r K resize-pane -U 5
|
bind -r K resize-pane -U 5
|
||||||
bind -r L resize-pane -R 5
|
bind -r L resize-pane -R 5
|
||||||
|
|
||||||
|
#set border colors
|
||||||
|
set -g pane-active-border-fg blue
|
||||||
|
|
|
@ -36,6 +36,9 @@ Plugin 'ryanoasis/vim-webdevicons'
|
||||||
Plugin 'terryma/vim-multiple-cursors'
|
Plugin 'terryma/vim-multiple-cursors'
|
||||||
Plugin 'Valloric/YouCompleteMe'
|
Plugin 'Valloric/YouCompleteMe'
|
||||||
Plugin 'brookhong/DBGPavim'
|
Plugin 'brookhong/DBGPavim'
|
||||||
|
Plugin 'tbabej/taskwiki'
|
||||||
|
Plugin 'airblade/vim-gitgutter'
|
||||||
|
|
||||||
filetype plugin indent on
|
filetype plugin indent on
|
||||||
|
|
||||||
augroup vimrc_autocmds
|
augroup vimrc_autocmds
|
||||||
|
|
Loading…
Reference in a new issue