mirror of
https://github.com/cupcakearmy/dotfiles.git
synced 2024-12-22 16:26:32 +00:00
add tmux
This commit is contained in:
parent
1b37804f53
commit
af41fe149c
24
files/tmux.conf
Normal file
24
files/tmux.conf
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
unbind C-b
|
||||||
|
set-option -g prefix C-f
|
||||||
|
bind-key C-f send-prefix
|
||||||
|
|
||||||
|
# Split View
|
||||||
|
unbind '"'
|
||||||
|
unbind %
|
||||||
|
bind H split-window -h
|
||||||
|
bind V split-window -v
|
||||||
|
|
||||||
|
# switch panes using Alt-arrow without prefix
|
||||||
|
bind -n M-Left select-pane -L
|
||||||
|
bind -n M-Right select-pane -R
|
||||||
|
bind -n M-Up select-pane -U
|
||||||
|
bind -n M-Down select-pane -D
|
||||||
|
|
||||||
|
# switch panes using jkhl
|
||||||
|
bind h select-pane -L
|
||||||
|
bind l select-pane -R
|
||||||
|
bind j select-pane -U
|
||||||
|
bind k select-pane -D
|
||||||
|
|
||||||
|
# Mouse
|
||||||
|
set -g mouse on
|
@ -15,6 +15,7 @@
|
|||||||
~/.config/omf: files/omf
|
~/.config/omf: files/omf
|
||||||
~/.config/key-mapper: files/key-mapper
|
~/.config/key-mapper: files/key-mapper
|
||||||
~/.gitignore_global: files/git/gitignore_global
|
~/.gitignore_global: files/git/gitignore_global
|
||||||
|
~/.tmux.conf: files/tmux.conf
|
||||||
|
|
||||||
- shell:
|
- shell:
|
||||||
- [git submodule update --init --recursive, Installing submodules]
|
- [git submodule update --init --recursive, Installing submodules]
|
||||||
|
Loading…
Reference in New Issue
Block a user