diff options
author | Juan J. Martinez <jjm@usebox.net> | 2019-03-01 10:11:17 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-05-29 22:57:28 +0100 |
commit | 620f91b50aae007fef3261d8c66c719d4fbe75cd (patch) | |
tree | 82927bef5d21a555a855df4bedf77523d4294255 | |
parent | 725d2444bcdf6567f78411cd9cbf56748c6dd3d1 (diff) | |
download | dotnvim-620f91b50aae007fef3261d8c66c719d4fbe75cd.tar.gz dotnvim-620f91b50aae007fef3261d8c66c719d4fbe75cd.zip |
Added tmux compatibility plugins
- vim-tmux-focus-events to improve Fugitive and GitGutter integration
- vim-tmux-clipboard to make easier copying from vim to a terminal
-rw-r--r-- | .gitmodules | 6 | ||||
m--------- | bundle/vim-tmux-clipboard | 0 | ||||
m--------- | bundle/vim-tmux-focus-events | 0 | ||||
-rw-r--r-- | tmux.conf | 3 |
4 files changed, 9 insertions, 0 deletions
diff --git a/.gitmodules b/.gitmodules index fb79d53..f88a16e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -31,3 +31,9 @@ [submodule "bundle/vim-z80"] path = bundle/vim-z80 url = https://github.com/samsaga2/vim-z80.git +[submodule "bundle/vim-tmux-focus-events"] + path = bundle/vim-tmux-focus-events + url = https://github.com/tmux-plugins/vim-tmux-focus-events.git +[submodule "bundle/vim-tmux-clipboard"] + path = bundle/vim-tmux-clipboard + url = https://github.com/roxma/vim-tmux-clipboard.git diff --git a/bundle/vim-tmux-clipboard b/bundle/vim-tmux-clipboard new file mode 160000 +Subproject d69964a0562f706030a478ff0f8139abd57d7e0 diff --git a/bundle/vim-tmux-focus-events b/bundle/vim-tmux-focus-events new file mode 160000 +Subproject 32723c5d778905a2a2e40030990c80c17f45664 @@ -45,6 +45,9 @@ setw -g window-status-current-fg '#000000' set -g pane-active-border-fg '#40a040' set -g pane-border-fg '#555555' +# For fe wvim plugins +set -g focus-events + # Bind to reload config bind r source-file ~/.tmux.conf |