fix(tmux): resize bindings no longer conflict with nvim
This commit is contained in:
parent
2a3bb1b2b0
commit
1155dcf308
2 changed files with 4 additions and 5 deletions
|
@ -1,6 +1,5 @@
|
|||
return {
|
||||
"mrjones2014/smart-splits.nvim",
|
||||
build = "./kitty/install-kittens.bash",
|
||||
event = "VeryLazy",
|
||||
-- stylua: ignore
|
||||
keys = {
|
||||
|
|
|
@ -36,10 +36,10 @@ bind-key k select-pane -U
|
|||
bind-key j select-pane -D
|
||||
|
||||
# Resize each pane
|
||||
bind -n C-Left resize-pane -L 5
|
||||
bind -n C-Right resize-pane -R 5
|
||||
bind -n C-Up resize-pane -U 2
|
||||
bind -n C-Down resize-pane -D 2
|
||||
bind-key -n M-Left resize-pane -L 5
|
||||
bind-key -n M-Right resize-pane -R 5
|
||||
bind-key -n M-Up resize-pane -U 2
|
||||
bind-key -n M-Down resize-pane -D 2
|
||||
|
||||
# Change window name
|
||||
bind-key r command-prompt -I "#W" "rename-window '%%'"
|
||||
|
|
Loading…
Add table
Reference in a new issue