1
1
Fork 0

easier pane switching

This commit is contained in:
Ava Gaiety Wroten 2021-04-11 18:34:55 -05:00
parent 2fd405e39f
commit 7bdf0b357c
3 changed files with 7 additions and 0 deletions

View file

@ -7,6 +7,10 @@
* `Spacebar` Leader * `Spacebar` Leader
* `<Leader>? {or /}` Open _this_ help file * `<Leader>? {or /}` Open _this_ help file
### Panes
* `Ctrl h {or j, k, l}` Change pane up, down, left or right
### Buffers ### Buffers
* `<Leader>w` Save * `<Leader>w` Save

View file

@ -11,6 +11,8 @@ let g:ale_completion_enabled = 1
let g:ale_completion_autoimport = 1 let g:ale_completion_autoimport = 1
call plug#begin('~/.config/nvim/autoload/plugged') call plug#begin('~/.config/nvim/autoload/plugged')
Plug 'christoomey/vim-tmux-navigator'
Plug 'mhinz/vim-startify' Plug 'mhinz/vim-startify'
Plug 'dracula/vim' Plug 'dracula/vim'
Plug 'cossonleo/neo-smooth-scroll.nvim' Plug 'cossonleo/neo-smooth-scroll.nvim'

View file

@ -22,6 +22,7 @@ bind l select-pane -R
# plugins # plugins
set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible' set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'dracula/tmux' set -g @plugin 'dracula/tmux'
set -g @plugin 'tmux-plugins/tmux-sidebar' set -g @plugin 'tmux-plugins/tmux-sidebar'